-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
79 lines (76 loc) · 3.16 KB
/
go.mod
File metadata and controls
79 lines (76 loc) · 3.16 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
module github.com/justpark/auth
go 1.12
replace github.com/go-resty/resty => gopkg.in/resty.v1 v1.11.0
require (
cloud.google.com/go/bigquery v1.0.1 // indirect
github.com/akutz/goof v0.1.2 // indirect
github.com/akutz/gotil v0.1.0
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/go-errors/errors v1.0.1
github.com/go-openapi/errors v0.19.2
github.com/go-openapi/runtime v0.19.4
github.com/go-openapi/strfmt v0.19.2
github.com/go-openapi/swag v0.19.5
github.com/go-openapi/validate v0.19.2
github.com/go-resty/resty v0.0.0-00010101000000-000000000000 // indirect
github.com/go-sql-driver/mysql v1.4.1
github.com/go-swagger/go-swagger v0.20.1
github.com/gobuffalo/logger v1.0.1 // indirect
github.com/gobuffalo/packr v1.30.1
github.com/gobwas/glob v0.2.3
github.com/golang/mock v1.3.1
github.com/gorilla/sessions v1.2.0
github.com/gtank/cryptopasta v0.0.0-20170601214702-1f550f6f2f69
github.com/imdario/mergo v0.3.7
github.com/jmoiron/sqlx v1.2.0
github.com/julienschmidt/httprouter v1.2.0
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect
github.com/lib/pq v1.2.0
github.com/magiconair/properties v1.8.1
github.com/mattn/go-runewidth v0.0.4 // indirect
github.com/meatballhat/negroni-logrus v0.0.0-20170801195057-31067281800f
github.com/mendsley/gojwk v0.0.0-20141217222730-4d5ec6e58103
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826
github.com/oleiade/reflections v1.0.0
github.com/olekukonko/tablewriter v0.0.1
github.com/opentracing/opentracing-go v1.1.0
github.com/ory/dockertest v3.3.5+incompatible
github.com/ory/fosite v0.29.7
github.com/ory/go-acc v0.0.0-20181118080137-ddc355013f90
github.com/ory/go-convenience v0.1.0
github.com/ory/graceful v0.1.1
github.com/ory/herodot v0.6.2
github.com/ory/ladon v1.0.1
github.com/ory/metrics-middleware v0.0.1
github.com/ory/pagination v0.0.1
github.com/ory/sqlcon v0.0.7
github.com/ory/x v0.0.72
github.com/pborman/uuid v1.2.0
github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
github.com/pkg/errors v0.8.1
github.com/pkg/profile v1.3.0
github.com/prometheus/client_golang v1.1.0
github.com/rs/cors v1.7.0
github.com/rubenv/sql-migrate v0.0.0-20190717103323-87ce952f7079
github.com/sawadashota/encrypta v0.0.2
github.com/sirupsen/logrus v1.4.2
github.com/spf13/cobra v0.0.5
github.com/spf13/viper v1.4.0
github.com/sqs/goreturns v0.0.0-20181028201513-538ac6014518
github.com/square/go-jose v2.3.1+incompatible
github.com/stretchr/testify v1.4.0
github.com/tomasen/realip v0.0.0-20180522021738-f0c99a92ddce
github.com/toqueteos/webbrowser v1.2.0
github.com/uber/jaeger-client-go v2.16.0+incompatible
github.com/uber/jaeger-lib v2.0.0+incompatible // indirect
github.com/urfave/negroni v1.0.0
golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
golang.org/x/tools v0.0.0-20190824210100-c2567a220953
gopkg.in/go-resty/resty.v0 v0.4.1
gopkg.in/resty.v1 v1.12.0
gopkg.in/square/go-jose.v2 v2.3.1
)