forked from yinheli/sshw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
27 lines (24 loc) · 871 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/iamlongalong/sshw
go 1.19
require (
github.com/atrox/homedir v1.0.0
github.com/kevinburke/ssh_config v1.2.0
github.com/manifoldco/promptui v0.9.0
github.com/pkg/errors v0.9.1
github.com/schollz/progressbar/v3 v3.12.1
github.com/stretchr/testify v1.8.1
golang.org/x/crypto v0.0.0-20220817201139-bc19a97f63c8
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/chzyer/readline v1.5.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.2 // indirect
golang.org/x/sys v0.2.0 // indirect
golang.org/x/term v0.2.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)