-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
54 lines (52 loc) · 2.14 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
module github.com/ory/keto
require (
github.com/akutz/goof v0.1.2 // indirect
github.com/akutz/gotil v0.1.0
github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535 // indirect
github.com/containerd/continuity v0.0.0-20200228182428-0f16d7a0959c // indirect
github.com/go-errors/errors v1.0.1
github.com/go-openapi/errors v0.19.4
github.com/go-openapi/runtime v0.19.5
github.com/go-openapi/strfmt v0.19.5
github.com/go-openapi/swag v0.19.5
github.com/go-openapi/validate v0.19.3
github.com/go-sql-driver/mysql v1.5.0
github.com/go-swagger/go-swagger v0.21.1-0.20200107003254-1c98855b472d
github.com/gobuffalo/packr v1.24.1
github.com/gobwas/glob v0.2.3 // indirect
github.com/golang/protobuf v1.4.2 // indirect
github.com/gorilla/sessions v1.1.3
github.com/gorilla/websocket v1.4.2
github.com/jackc/pgx/v4 v4.4.1
github.com/jmoiron/sqlx v1.2.0
github.com/julienschmidt/httprouter v1.2.0
github.com/kardianos/osext v0.0.0-20170510131534-ae77be60afb1 // indirect
github.com/open-policy-agent/opa v0.10.1
github.com/ory/analytics-go/v4 v4.0.1
github.com/ory/cli v0.0.11
github.com/ory/go-acc v0.2.3
github.com/ory/graceful v0.1.1
github.com/ory/herodot v0.9.1
github.com/ory/viper v1.7.5
github.com/ory/x v0.0.128
github.com/pborman/uuid v1.2.0
github.com/pkg/errors v0.9.1
github.com/pkg/profile v1.3.0 // indirect
github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a // indirect
github.com/rs/cors v1.6.0
github.com/rubenv/sql-migrate v0.0.0-20190327083759-54bad0a9b051
github.com/shopspring/decimal v1.2.0 // indirect
github.com/spf13/cobra v1.0.0
github.com/spf13/viper v1.7.0 // indirect
github.com/sqs/goreturns v0.0.0-20181028201513-538ac6014518
github.com/stretchr/testify v1.5.1
github.com/tidwall/sjson v1.1.1 // indirect
github.com/urfave/negroni v1.0.0
github.com/yashtewari/glob-intersection v0.0.0-20180916065949-5c77d914dd0b // indirect
go.mongodb.org/mongo-driver v1.3.4 // indirect
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
golang.org/x/tools v0.0.0-20200401192744-099440627f01
google.golang.org/grpc v1.29.1 // indirect
google.golang.org/protobuf v1.24.0 // indirect
)
go 1.14