-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgo.mod
32 lines (29 loc) · 1.11 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
module github.com/cloudwm/cloudcli
go 1.18
require (
github.com/mitchellh/go-homedir v1.1.0
github.com/moby/term v0.5.0
github.com/spf13/cast v1.3.0
github.com/spf13/cobra v0.0.5
github.com/spf13/viper v1.4.0
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
gopkg.in/resty.v1 v1.12.0
gopkg.in/yaml.v2 v2.2.2
)
require (
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
github.com/cpuguy83/go-md2man v1.0.10 // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/pelletier/go-toml v1.4.0 // indirect
github.com/russross/blackfriday v1.5.3-0.20190616195246-a925a152c144 // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.3 // indirect
golang.org/x/net v0.0.0-20190522155817-f3200d17e092 // indirect
golang.org/x/sys v0.1.0 // indirect
golang.org/x/text v0.3.2 // indirect
)