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 (
|
2022-09-30 10:07:59 +00:00
|
|
|
github.com/99designs/gqlgen v0.17.20
|
2022-11-27 15:10:45 +00:00
|
|
|
github.com/arangodb/go-driver v1.4.0
|
|
|
|
github.com/aws/aws-sdk-go v1.44.145
|
|
|
|
github.com/cenkalti/backoff/v4 v4.2.0 // indirect
|
|
|
|
github.com/coreos/go-oidc/v3 v3.4.0
|
2022-10-01 12:11:16 +00:00
|
|
|
github.com/gin-gonic/gin v1.8.1
|
2022-11-27 15:10:45 +00:00
|
|
|
github.com/glebarez/go-sqlite v1.19.5 // indirect
|
2022-11-12 18:24:37 +00:00
|
|
|
github.com/glebarez/sqlite v1.5.0
|
2022-10-01 12:11:16 +00:00
|
|
|
github.com/go-playground/validator/v10 v10.11.1 // indirect
|
2022-11-27 15:10:45 +00:00
|
|
|
github.com/go-redis/redis/v8 v8.11.5
|
2022-10-01 12:11:16 +00:00
|
|
|
github.com/goccy/go-json v0.9.11 // indirect
|
2022-11-27 15:10:45 +00:00
|
|
|
github.com/gocql/gocql v1.2.1
|
|
|
|
github.com/gofrs/uuid v4.3.1+incompatible // indirect
|
2021-12-17 15:55:07 +00:00
|
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible
|
2022-11-27 15:10:45 +00:00
|
|
|
github.com/golang/snappy v0.0.4 // indirect
|
2021-08-04 06:48:57 +00:00
|
|
|
github.com/google/uuid v1.3.0
|
2022-11-27 15:10:45 +00:00
|
|
|
github.com/guregu/dynamo v1.17.0
|
|
|
|
github.com/joho/godotenv v1.4.0
|
|
|
|
github.com/klauspost/compress v1.15.12 // indirect
|
|
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
2021-12-19 00:15:06 +00:00
|
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
2022-11-27 15:10:45 +00:00
|
|
|
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
|
|
|
|
github.com/remyoudompheng/bigfft v0.0.0-20220927061507-ef77025ab5aa // indirect
|
|
|
|
github.com/robertkrimen/otto v0.0.0-20221126133309-a3b51c68f2a4
|
|
|
|
github.com/sirupsen/logrus v1.9.0
|
|
|
|
github.com/stretchr/testify v1.8.1
|
|
|
|
github.com/surrealdb/surrealdb.go v0.1.2-0.20221019092700-845266102715
|
|
|
|
github.com/urfave/cli/v2 v2.23.5 // indirect
|
2022-09-30 10:07:59 +00:00
|
|
|
github.com/vektah/gqlparser/v2 v2.5.1
|
2022-11-27 15:10:45 +00:00
|
|
|
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect
|
|
|
|
go.mongodb.org/mongo-driver v1.11.0
|
2022-11-17 04:54:37 +00:00
|
|
|
golang.org/x/crypto v0.3.0
|
2022-11-27 15:10:45 +00:00
|
|
|
golang.org/x/oauth2 v0.2.0
|
|
|
|
golang.org/x/tools v0.3.0 // indirect
|
2022-10-01 12:11:16 +00:00
|
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
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
|
2022-11-27 15:10:45 +00:00
|
|
|
gorm.io/driver/mysql v1.4.4
|
2022-11-09 07:37:20 +00:00
|
|
|
gorm.io/driver/postgres v1.4.5
|
|
|
|
gorm.io/driver/sqlserver v1.4.1
|
2022-11-27 15:10:45 +00:00
|
|
|
gorm.io/gorm v1.24.2
|
2021-07-08 12:15:19 +00:00
|
|
|
)
|