-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgo.mod
27 lines (25 loc) · 966 Bytes
/
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
module github.com/leberKleber/simple-jwt-provider
go 1.13
require (
github.com/DusanKasan/parsemail v1.2.0
github.com/ardanlabs/conf v1.2.1
github.com/golang-jwt/jwt v3.2.1+incompatible
github.com/golang-migrate/migrate/v4 v4.7.1
github.com/google/go-cmp v0.4.0 // indirect
github.com/google/uuid v1.1.1
github.com/gorilla/mux v1.7.3
github.com/lib/pq v1.3.0
github.com/mattn/go-sqlite3 v1.14.5 // indirect
github.com/sirupsen/logrus v1.4.2
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/mail.v2 v2.3.1
gopkg.in/yaml.v2 v2.3.0
gorm.io/driver/postgres v1.0.8
gorm.io/driver/sqlite v1.1.4
gorm.io/gorm v1.21.6
gotest.tools v2.2.0+incompatible
)