-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
43 lines (40 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
40
41
42
43
module gin-demo
go 1.22
require (
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d
github.com/bitly/go-simplejson v0.5.0
github.com/fatih/structs v1.1.0
github.com/gin-contrib/zap v0.0.1
github.com/gin-gonic/gin v1.7.1
github.com/go-playground/locales v0.13.0
github.com/go-playground/universal-translator v0.17.0
github.com/go-playground/validator/v10 v10.4.1
github.com/go-sql-driver/mysql v1.6.0
github.com/gocraft/dbr/v2 v2.7.1
github.com/json-iterator/go v1.1.9
github.com/sirupsen/logrus v1.8.1
github.com/toolkits/file v0.0.0-20160325033739-a5b3c5147e07
go.uber.org/zap v1.16.0
google.golang.org/genproto v0.0.0-20210423144448-3a41ef94ed2b
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
github.com/stretchr/testify v1.5.1 // indirect
github.com/ugorji/go/codec v1.1.7 // indirect
go.uber.org/atomic v1.6.0 // indirect
go.uber.org/multierr v1.5.0 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect
golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4 // indirect
golang.org/x/tools v0.1.0 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/protobuf v1.26.0 // indirect
)