forked from netlify/gotrue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
56 lines (54 loc) · 2.62 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
55
56
module github.com/netlify/gotrue
require (
cloud.google.com/go v0.0.0-20170822200954-98f5696b1026 // indirect
github.com/GoogleCloudPlatform/cloudsql-proxy v0.0.0-20170623214735-571947b0f240
github.com/badoux/checkmail v0.0.0-20170203135005-d0a759655d62
github.com/beevik/etree v0.0.0-20180609182452-90dafc1e1f11
github.com/cockroachdb/cockroach-go v0.0.0-20190925194419-606b3d062051 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/didip/tollbooth v4.0.2+incompatible
github.com/didip/tollbooth/v5 v5.1.1
github.com/fatih/color v1.7.0 // indirect
github.com/go-chi/chi v4.0.2+incompatible
github.com/go-sql-driver/mysql v1.4.1
github.com/gobuffalo/fizz v1.9.5 // indirect
github.com/gobuffalo/genny v0.4.1 // indirect
github.com/gobuffalo/nulls v0.1.0 // indirect
github.com/gobuffalo/packr/v2 v2.7.1 // indirect
github.com/gobuffalo/pop v4.12.2+incompatible
github.com/gobuffalo/tags v2.1.6+incompatible // indirect
github.com/gobuffalo/uuid v2.0.5+incompatible
github.com/imdario/mergo v0.0.0-20160216103600-3e95a51e0639
github.com/jackc/pgconn v1.1.0 // indirect
github.com/joho/godotenv v1.3.0
github.com/jonboulle/clockwork v0.0.0-20180716110948-e7c6d408fd5c // indirect
github.com/kelseyhightower/envconfig v1.4.0
github.com/mattn/go-colorable v0.1.4 // indirect
github.com/mattn/go-isatty v0.0.10 // indirect
github.com/mattn/go-sqlite3 v1.11.0 // indirect
github.com/netlify/mailme v1.1.1
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
github.com/pkg/errors v0.8.1
github.com/rogpeppe/go-internal v1.5.0 // indirect
github.com/rs/cors v1.6.0
github.com/russellhaering/gosaml2 v0.3.1
github.com/russellhaering/goxmldsig v0.0.0-20180430223755-7acd5e4a6ef7
github.com/sebest/xff v0.0.0-20160910043805-6c115e0ffa35
github.com/sirupsen/logrus v1.4.2
github.com/spf13/cobra v0.0.5
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.4.0
golang.org/x/crypto v0.0.0-20191107222254-f4817d981bb6
golang.org/x/net v0.0.0-20191108063844-7e6e90b9ea88 // indirect
golang.org/x/oauth2 v0.0.0-20170807180024-9a379c6b3e95
golang.org/x/sys v0.0.0-20191105231009-c1f44814a5cd // indirect
golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1 // indirect
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898 // indirect
google.golang.org/api v0.0.0-20170821230356-dd6bdadc5852 // indirect
google.golang.org/appengine v1.6.5 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
gopkg.in/yaml.v1 v1.0.0-20140924161607-9f9df34309c0 // indirect
gopkg.in/yaml.v2 v2.2.5 // indirect
)
go 1.13