-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
41 lines (37 loc) · 1.49 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
module github.com/G-Node/gin-valid
go 1.20
require (
github.com/G-Node/gin-cli v0.0.0-20190819162807-7786caf50bbd
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
github.com/dustin/go-humanize v1.0.0
github.com/gogits/go-gogs-client v0.0.0-20190710002546-4c3c18947c15
github.com/gogs/go-gogs-client v0.0.0-20190710002546-4c3c18947c15
github.com/gorilla/handlers v1.4.2
github.com/gorilla/mux v1.7.3
gopkg.in/yaml.v2 v2.2.8
)
require (
github.com/BurntSushi/toml v0.4.1 // indirect
github.com/fatih/color v1.7.0 // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/mattn/go-colorable v0.1.4 // indirect
github.com/mattn/go-isatty v0.0.10 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/pelletier/go-toml v1.5.0 // indirect
github.com/shibukawa/configdir v0.0.0-20170330084843-e180dbdc8da0 // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.4.0 // indirect
github.com/stretchr/testify v1.4.0 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
)
replace (
github.com/docker/docker => github.com/docker/engine v0.0.0-20190717161051-705d9623b7c1
github.com/go-xorm/core => xorm.io/core v0.6.3
)