-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
26 lines (23 loc) · 855 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
module github.com/sackh/netconf-cli
go 1.18
require (
github.com/gookit/color v1.5.4
github.com/knadh/koanf/parsers/dotenv v0.1.0
github.com/knadh/koanf/providers/file v0.1.0
github.com/knadh/koanf/v2 v2.0.1
github.com/openshift-telco/go-netconf-client v1.0.5
github.com/spf13/cobra v1.7.0
golang.org/x/crypto v0.12.0
)
require (
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/joho/godotenv v1.5.1 // indirect
github.com/knadh/koanf/maps v0.1.1 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
golang.org/x/sys v0.11.0 // indirect
)