-
Notifications
You must be signed in to change notification settings - Fork 14
/
go.mod
25 lines (22 loc) · 913 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
module github.com/carlmontanari/boxen
go 1.17
require (
github.com/google/uuid v1.3.0
github.com/scrapli/scrapligo v1.1.0
github.com/scrapli/scrapligocfg v1.0.0
github.com/urfave/cli/v2 v2.3.0
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
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.0-20190314233015-f79a8a8ca69d // indirect
github.com/creack/pty v1.1.18 // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/sirikothe/gotextfsm v1.0.1-0.20200816110946-6aa2cfd355e4 // indirect
golang.org/x/crypto v0.0.0-20220518034528-6f7dac969898 // indirect
golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect
gopkg.in/yaml.v3 v3.0.0 // indirect
)