-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathgo.mod
34 lines (32 loc) · 1.21 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
module to-do-list
go 1.16
require (
github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/gin-contrib/sessions v0.0.3
github.com/gin-gonic/gin v1.7.4
github.com/go-openapi/spec v0.20.4 // indirect
github.com/go-redis/redis v6.15.9+incompatible
github.com/jinzhu/gorm v1.9.16
github.com/mailru/easyjson v0.7.7 // indirect
github.com/onsi/gomega v1.16.0 // indirect
github.com/opentracing/opentracing-go v1.2.0
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cast v1.5.0
github.com/swaggo/files v0.0.0-20210815190702-a29dd2bc99b2
github.com/swaggo/gin-swagger v1.3.2
github.com/swaggo/swag v1.7.3
github.com/uber/jaeger-client-go v2.30.0+incompatible
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
go.uber.org/atomic v1.11.0 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
golang.org/x/mod v0.5.1 // indirect
golang.org/x/net v0.0.0-20211020060615-d418f374d309 // indirect
golang.org/x/sys v0.0.0-20211023085530-d6a326fbbf70 // indirect
golang.org/x/tools v0.1.7 // indirect
gopkg.in/go-playground/validator.v8 v8.18.2
gopkg.in/ini.v1 v1.63.2
gopkg.in/yaml.v2 v2.4.0
gorm.io/driver/mysql v1.3.4
gorm.io/gorm v1.23.6
)