-
Notifications
You must be signed in to change notification settings - Fork 394
/
Copy pathgo.mod
60 lines (58 loc) · 2.58 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
57
58
59
60
module github.com/netlify/gotrue
require (
cloud.google.com/go v0.67.0 // indirect
github.com/GoogleCloudPlatform/cloudsql-proxy v0.0.0-20170623214735-571947b0f240
github.com/Masterminds/semver/v3 v3.1.1 // indirect
github.com/badoux/checkmail v0.0.0-20170203135005-d0a759655d62
github.com/beevik/etree v1.1.0
github.com/didip/tollbooth/v5 v5.1.1
github.com/fatih/color v1.10.0 // indirect
github.com/go-chi/chi v4.0.2+incompatible
github.com/go-sql-driver/mysql v1.5.0
github.com/gobuffalo/envy v1.9.0 // indirect
github.com/gobuffalo/fizz v1.13.0 // indirect
github.com/gobuffalo/flect v0.2.2 // indirect
github.com/gobuffalo/nulls v0.4.0 // indirect
github.com/gobuffalo/packr/v2 v2.8.1 // indirect
github.com/gobuffalo/plush/v4 v4.1.0 // indirect
github.com/gobuffalo/pop/v5 v5.3.3
github.com/gobuffalo/validate/v3 v3.3.0 // indirect
github.com/gofrs/uuid v4.0.0+incompatible
github.com/golang-jwt/jwt v3.2.1+incompatible
github.com/gorilla/securecookie v1.1.1
github.com/gorilla/sessions v1.1.1
github.com/imdario/mergo v0.0.0-20160216103600-3e95a51e0639
github.com/jackc/pgproto3/v2 v2.0.7 // indirect
github.com/jmoiron/sqlx v1.3.1 // indirect
github.com/joho/godotenv v1.3.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/lestrrat-go/jwx v0.9.0
github.com/lib/pq v1.9.0 // indirect
github.com/mattermost/xml-roundtrip-validator v0.1.0 // indirect
github.com/microcosm-cc/bluemonday v1.0.5 // indirect
github.com/mrjones/oauth v0.0.0-20190623134757-126b35219450
github.com/netlify/mailme v1.1.1
github.com/opentracing/opentracing-go v1.1.0
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
github.com/pkg/errors v0.9.1
github.com/rs/cors v1.6.0
github.com/russellhaering/gosaml2 v0.6.0
github.com/russellhaering/goxmldsig v1.1.1
github.com/sebest/xff v0.0.0-20160910043805-6c115e0ffa35
github.com/sethvargo/go-password v0.2.0
github.com/sirupsen/logrus v1.7.0
github.com/spf13/cobra v1.1.3
github.com/stretchr/testify v1.6.1
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
golang.org/x/net v0.0.0-20210119194325-5f4716e94777 // indirect
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a // indirect
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf // indirect
golang.org/x/text v0.3.5 // indirect
golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1 // indirect
gopkg.in/DataDog/dd-trace-go.v1 v1.12.1
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
gopkg.in/yaml.v1 v1.0.0-20140924161607-9f9df34309c0 // indirect
)
go 1.13