-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathgo.mod
More file actions
77 lines (72 loc) · 3.02 KB
/
go.mod
File metadata and controls
77 lines (72 loc) · 3.02 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
module github.com/blacknon/lssh
go 1.25.1
// require
require (
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
github.com/BurntSushi/toml v1.6.0
github.com/ScaleFT/sshkeys v1.4.0 // indirect
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 // indirect
github.com/blacknon/crypto11 v1.6.2-0.20260315101107-fd111b1d25ce // indirect
github.com/blacknon/go-sshlib v0.1.29
github.com/blacknon/go-x11auth v0.1.0 // indirect
github.com/blacknon/tvxterm v0.1.1
github.com/c-bata/go-prompt v0.2.6
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dchest/bcrypt_pbkdf v0.0.0-20150205184540-83f37f9c154a // indirect
github.com/disiqueira/gotree v1.0.0
github.com/dustin/go-humanize v1.0.1
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
github.com/kevinburke/ssh_config v1.6.0
github.com/kr/fs v0.1.0 // indirect
github.com/lunixbochs/vtclean v1.0.0 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.21
github.com/mattn/go-tty v0.0.7 // indirect
github.com/miekg/pkcs11 v1.1.2 // indirect
github.com/moby/term v0.5.2 // indirect
github.com/nsf/termbox-go v1.1.1
github.com/pkg/errors v0.9.1 // indirect
github.com/pkg/sftp v1.13.10
github.com/pkg/term v1.2.0-beta.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/testify v1.11.1
github.com/thales-e-security/pool v0.0.2 // indirect
github.com/urfave/cli v1.22.17
github.com/vbauerster/mpb v3.4.0+incompatible
golang.org/x/crypto v0.49.0
golang.org/x/net v0.52.0
golang.org/x/sys v0.42.0
golang.org/x/term v0.41.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/blacknon/go-sshproc v0.1.1
github.com/blacknon/mview v0.1.5
github.com/c9s/goprocinfo v0.0.0-20210130143923-c95fcf8c64a8
github.com/gdamore/tcell/v2 v2.9.0
github.com/rivo/tview v0.0.0-20241227133733-17b7edb88c57
mvdan.cc/sh v2.6.4+incompatible
)
require (
code.rocketnine.space/tslocum/cbind v0.1.5 // indirect
github.com/clipperhouse/uax29/v2 v2.7.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
github.com/creack/pty v1.1.24 // indirect
github.com/cyphar/filepath-securejoin v0.6.1 // indirect
github.com/gdamore/encoding v1.0.1 // indirect
github.com/go-git/go-billy/v5 v5.8.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/rasky/go-xdr v0.0.0-20170124162913-1a41d1a06c93 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/willscott/go-nfs v0.0.3 // indirect
github.com/willscott/go-nfs-client v0.0.0-20251022144359-801f10d98886 // indirect
golang.org/x/text v0.35.0 // indirect
)
// replace
replace github.com/c-bata/go-prompt v0.2.6 => github.com/blacknon/go-prompt v0.2.7