2021-07-23 16:27:44 +00:00
|
|
|
module github.com/authorizerdev/authorizer/server
|
2021-06-28 16:16:21 +00:00
|
|
|
|
|
|
|
go 1.16
|
|
|
|
|
2021-07-08 12:15:19 +00:00
|
|
|
require (
|
2023-10-13 05:18:51 +00:00
|
|
|
github.com/99designs/gqlgen v0.17.39
|
|
|
|
github.com/arangodb/go-driver v1.6.0
|
|
|
|
github.com/aws/aws-sdk-go v1.45.25
|
|
|
|
github.com/bytedance/sonic v1.10.2 // indirect
|
|
|
|
github.com/coreos/go-oidc/v3 v3.6.0
|
|
|
|
github.com/couchbase/gocb/v2 v2.6.4
|
|
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
|
|
|
|
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
|
|
|
|
github.com/gin-gonic/gin v1.9.1
|
|
|
|
github.com/glebarez/sqlite v1.9.0
|
|
|
|
github.com/go-playground/validator/v10 v10.15.5 // indirect
|
|
|
|
github.com/go-sql-driver/mysql v1.7.1 // indirect
|
|
|
|
github.com/gocql/gocql v1.6.0
|
2021-12-17 15:55:07 +00:00
|
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible
|
2023-10-13 05:18:51 +00:00
|
|
|
github.com/google/uuid v1.3.1
|
|
|
|
github.com/guregu/dynamo v1.20.2
|
|
|
|
github.com/hashicorp/golang-lru v1.0.2 // indirect
|
|
|
|
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
|
|
|
|
github.com/joho/godotenv v1.5.1
|
|
|
|
github.com/klauspost/compress v1.17.0 // indirect
|
|
|
|
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
|
|
|
|
github.com/montanaflynn/stats v0.7.1 // indirect
|
|
|
|
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
|
|
|
|
github.com/redis/go-redis/v9 v9.2.1
|
|
|
|
github.com/robertkrimen/otto v0.2.1
|
|
|
|
github.com/sirupsen/logrus v1.9.3
|
|
|
|
github.com/sosodev/duration v1.2.0 // indirect
|
|
|
|
github.com/stretchr/testify v1.8.4
|
|
|
|
github.com/twilio/twilio-go v1.14.1
|
|
|
|
github.com/urfave/cli/v2 v2.25.7 // indirect
|
|
|
|
github.com/vektah/gqlparser/v2 v2.5.10
|
|
|
|
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect
|
|
|
|
go.mongodb.org/mongo-driver v1.12.1
|
|
|
|
golang.org/x/arch v0.5.0 // indirect
|
|
|
|
golang.org/x/crypto v0.14.0
|
|
|
|
golang.org/x/oauth2 v0.13.0
|
|
|
|
golang.org/x/tools v0.14.0 // indirect
|
|
|
|
google.golang.org/appengine v1.6.8
|
2022-01-08 08:38:42 +00:00
|
|
|
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
|
2022-01-09 12:05:37 +00:00
|
|
|
gopkg.in/mail.v2 v2.3.1
|
2022-02-26 15:06:22 +00:00
|
|
|
gopkg.in/square/go-jose.v2 v2.6.0
|
2023-10-13 05:18:51 +00:00
|
|
|
gorm.io/driver/mysql v1.5.2
|
|
|
|
gorm.io/driver/postgres v1.5.3
|
|
|
|
gorm.io/driver/sqlserver v1.5.2
|
|
|
|
gorm.io/gorm v1.25.5
|
|
|
|
modernc.org/memory v1.7.2 // indirect
|
|
|
|
modernc.org/sqlite v1.26.0 // indirect
|
2021-07-08 12:15:19 +00:00
|
|
|
)
|