-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
121 additions
and
1,474 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,48 @@ | ||
module github.com/noxecane/anansi | ||
|
||
go 1.17 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/go-chi/chi v1.5.4 | ||
github.com/go-chi/chi v1.5.5 | ||
github.com/go-jose/go-jose/v3 v3.0.1 | ||
github.com/go-ozzo/ozzo-validation/v4 v4.3.0 | ||
github.com/go-pg/pg/v10 v10.10.6 | ||
github.com/go-playground/mold/v3 v3.1.1 | ||
github.com/go-redis/redis/v8 v8.11.4 | ||
github.com/golang-migrate/migrate/v4 v4.15.1 | ||
github.com/joho/godotenv v1.4.0 | ||
github.com/go-playground/mold/v4 v4.5.0 | ||
github.com/golang-migrate/migrate/v4 v4.16.2 | ||
github.com/joho/godotenv v1.5.1 | ||
github.com/json-iterator/go v1.1.12 | ||
github.com/kelseyhightower/envconfig v1.4.0 | ||
github.com/mitchellh/mapstructure v1.4.3 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/mitchellh/mapstructure v1.5.0 | ||
github.com/prometheus/client_golang v1.11.0 | ||
github.com/redis/go-redis/v9 v9.3.0 | ||
github.com/rs/cors v1.8.0 | ||
github.com/rs/zerolog v1.26.0 | ||
github.com/rs/zerolog v1.31.0 | ||
github.com/segmentio/ksuid v1.0.4 | ||
golang.org/x/crypto v0.0.0-20211117183948-ae814b36b871 | ||
gopkg.in/square/go-jose.v2 v2.6.0 | ||
golang.org/x/crypto v0.15.0 | ||
syreclabs.com/go/faker v1.2.3 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/go-pg/zerochecker v0.2.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.0 // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/lib/pq v1.10.0 // indirect | ||
github.com/gosimple/slug v1.13.1 // indirect | ||
github.com/gosimple/unidecode v1.0.1 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/lib/pq v1.10.2 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.26.0 // indirect | ||
github.com/prometheus/procfs v0.6.0 // indirect | ||
github.com/segmentio/go-camelcase v0.0.0-20160726192923-7085f1e3c734 // indirect | ||
github.com/segmentio/go-snakecase v1.2.0 // indirect | ||
github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc // indirect | ||
github.com/vmihailenco/bufpool v0.1.11 // indirect | ||
github.com/vmihailenco/msgpack/v5 v5.3.4 // indirect | ||
github.com/vmihailenco/tagparser v0.1.2 // indirect | ||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect | ||
go.uber.org/atomic v1.6.0 // indirect | ||
golang.org/x/sys v0.0.0-20211013075003-97ac67df715c // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
mellium.im/sasl v0.2.1 // indirect | ||
go.uber.org/atomic v1.11.0 // indirect | ||
golang.org/x/sys v0.14.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters