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 (
|
2021-12-22 05:21:12 +00:00
|
|
|
github.com/99designs/gqlgen v0.14.0
|
2021-12-19 00:15:06 +00:00
|
|
|
github.com/arangodb/go-driver v1.2.1
|
|
|
|
github.com/coreos/go-oidc/v3 v3.1.0
|
|
|
|
github.com/gin-contrib/location v0.0.2
|
2021-07-17 16:29:50 +00:00
|
|
|
github.com/gin-gonic/gin v1.7.2
|
2021-08-04 06:48:57 +00:00
|
|
|
github.com/go-playground/validator/v10 v10.8.0 // indirect
|
2021-07-17 16:29:50 +00:00
|
|
|
github.com/go-redis/redis/v8 v8.11.0
|
2021-12-17 15:55:07 +00:00
|
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible
|
2021-07-17 16:29:50 +00:00
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
2021-08-04 06:48:57 +00:00
|
|
|
github.com/google/uuid v1.3.0
|
2021-07-17 16:29:50 +00:00
|
|
|
github.com/joho/godotenv v1.3.0
|
2021-08-04 06:48:57 +00:00
|
|
|
github.com/json-iterator/go v1.1.11 // indirect
|
|
|
|
github.com/mattn/go-isatty v0.0.13 // indirect
|
2021-12-19 00:15:06 +00:00
|
|
|
github.com/mitchellh/mapstructure v1.1.2 // indirect
|
|
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
|
|
github.com/modern-go/reflect2 v1.0.1 // indirect
|
|
|
|
github.com/robertkrimen/otto v0.0.0-20211024170158-b87d35c0b86f
|
2021-08-04 06:48:57 +00:00
|
|
|
github.com/ugorji/go v1.2.6 // indirect
|
2021-12-22 05:21:12 +00:00
|
|
|
github.com/vektah/gqlparser/v2 v2.2.0
|
|
|
|
go.mongodb.org/mongo-driver v1.8.1
|
2021-12-17 16:20:57 +00:00
|
|
|
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
|
2021-07-17 16:29:50 +00:00
|
|
|
golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect
|
|
|
|
golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914
|
|
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
|
|
google.golang.org/protobuf v1.27.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
|
2021-08-04 06:48:57 +00:00
|
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
2021-12-17 16:20:57 +00:00
|
|
|
gorm.io/driver/mysql v1.2.1
|
|
|
|
gorm.io/driver/postgres v1.2.3
|
|
|
|
gorm.io/driver/sqlite v1.2.6
|
2021-12-19 00:15:06 +00:00
|
|
|
gorm.io/driver/sqlserver v1.2.1
|
2021-12-17 16:20:57 +00:00
|
|
|
gorm.io/gorm v1.22.4
|
2021-07-08 12:15:19 +00:00
|
|
|
)
|