forked from keratin/authn-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
39 lines (37 loc) · 1.68 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
module github.com/keratin/authn-server
require (
cloud.google.com/go v0.0.0-20180417120045-d19004dbbee5 // indirect
github.com/airbrake/gobrake v3.5.0+incompatible
github.com/beorn7/perks v0.0.0-20160804104726-4c0e84591b9a // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dlclark/regexp2 v1.1.6 // indirect
github.com/felixge/httpsnoop v1.0.0
github.com/getsentry/sentry-go v0.3.0
github.com/go-redis/redis v6.15.2+incompatible
github.com/go-sql-driver/mysql v1.3.0
github.com/google/go-cmp v0.3.0 // indirect
github.com/gorilla/context v1.1.1 // indirect
github.com/gorilla/handlers v1.3.0
github.com/gorilla/mux v1.6.1
github.com/jmoiron/sqlx v0.0.0-20170430194603-d9bd385d68c0
github.com/joho/godotenv v1.2.0
github.com/lib/pq v0.0.0-20180327071824-d34b9ff171c2
github.com/mattn/go-sqlite3 v1.6.0
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/pkg/errors v0.8.1
github.com/prometheus/client_golang v0.9.0-pre1
github.com/prometheus/client_model v0.0.0-20170216185247-6f3806018612 // indirect
github.com/prometheus/common v0.0.0-20171104095907-e3fb1a1acd76 // indirect
github.com/prometheus/procfs v0.0.0-20171017214025-a6e9df898b13 // indirect
github.com/sirupsen/logrus v1.0.5
github.com/stretchr/testify v1.4.0
github.com/test-go/testify v1.1.4 // indirect
github.com/trustelem/zxcvbn v1.0.1
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
golang.org/x/oauth2 v0.0.0-20180416194528-6881fee410a5
google.golang.org/appengine v0.0.0-20180405220334-0a24098c0ec6 // indirect
gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
gopkg.in/square/go-jose.v2 v2.3.1
)
go 1.13