-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
go.mod
43 lines (37 loc) · 1.6 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
module github.com/blacknon/go-sshlib
// NOTE: go-nfsについては、オリジナルがアップデートされたらベースのリポジトリに変更する(2024/08/10)
// => debug commitが何故か0.0.2に含まれていないので…
require (
github.com/ScaleFT/sshkeys v0.0.0-20200327173127-6142f742bca5
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5
// TODO: マージされたらベースのリポジトリに変更する
// github.com/ThalesIgnite/crypto11 v1.2.6
github.com/blacknon/crypto11 v1.2.7
github.com/blacknon/go-x11auth v0.1.0
github.com/lunixbochs/vtclean v1.0.0
github.com/miekg/pkcs11 v1.1.1
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6
golang.org/x/crypto v0.26.0
golang.org/x/net v0.28.0
golang.org/x/sys v0.23.0
golang.org/x/term v0.23.0
)
require (
github.com/blacknon/go-nfs-sshlib v0.0.3
github.com/go-git/go-billy/v5 v5.5.0
github.com/pkg/sftp v1.13.6
)
require (
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
github.com/dchest/bcrypt_pbkdf v0.0.0-20150205184540-83f37f9c154a // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
github.com/kr/fs v0.1.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rasky/go-xdr v0.0.0-20170124162913-1a41d1a06c93 // indirect
github.com/thales-e-security/pool v0.0.2 // indirect
github.com/willscott/go-nfs-client v0.0.0-20240104095149-b44639837b00 // indirect
)
// replace github.com/blacknon/go-nfs-sshlib v0.0.3 => ../go-nfs-sshlib
go 1.22.4