-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgo.mod
27 lines (24 loc) · 908 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
27
module github.com/hellt/cmdo
go 1.21
require (
github.com/fatih/color v1.17.0
github.com/scrapli/scrapligo v1.3.2
github.com/scrapli/scrapligocfg v1.0.0
github.com/sirupsen/logrus v1.9.3
github.com/urfave/cli/v2 v2.27.4
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/carlmontanari/difflibgo v0.0.0-20210718194309-31b9e131c298 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
github.com/creack/pty v1.1.21 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/sirikothe/gotextfsm v1.0.1-0.20200816110946-6aa2cfd355e4 // indirect
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
golang.org/x/crypto v0.6.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/term v0.5.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)