-
Notifications
You must be signed in to change notification settings - Fork 29
/
go.mod
52 lines (48 loc) · 1.96 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
44
45
46
47
48
49
50
51
52
module github.com/u-root/cpu
go 1.20
require (
github.com/gliderlabs/ssh v0.3.5
github.com/hugelgupf/p9 v0.2.1-0.20230814004337-e6037077d6dc
github.com/kevinburke/ssh_config v1.2.0
github.com/u-root/u-root v0.11.1-0.20230913033713-004977728a9d
golang.org/x/crypto v0.22.0
golang.org/x/sys v0.20.0
)
require (
github.com/brutella/dnssd v1.2.9
github.com/creack/pty v1.1.18
github.com/go-git/go-billy/v5 v5.5.1-0.20240514075308-8f1b719cb6a2
github.com/google/uuid v1.6.0
github.com/mdlayher/vsock v1.2.1
github.com/moby/sys/mountinfo v0.7.1
github.com/shirou/gopsutil v3.21.11+incompatible
github.com/willscott/go-nfs v0.0.0-20240424173852-04b947a7e58a
golang.org/x/exp v0.0.0-20230810033253-352e893a4cad
golang.org/x/term v0.19.0
)
require (
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
github.com/cyphar/filepath-securejoin v0.2.5 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
github.com/klauspost/compress v1.16.7 // indirect
github.com/klauspost/pgzip v1.2.6 // indirect
github.com/mdlayher/socket v0.4.1 // indirect
github.com/miekg/dns v1.1.55 // indirect
github.com/pierrec/lz4/v4 v4.1.18 // indirect
github.com/rasky/go-xdr v0.0.0-20170124162913-1a41d1a06c93 // indirect
github.com/tklauser/go-sysconf v0.3.11 // indirect
github.com/tklauser/numcpus v0.6.1 // indirect
github.com/u-root/uio v0.0.0-20230305220412-3e8cd9d6bf63 // indirect
github.com/ulikunitz/xz v0.5.11 // indirect
github.com/vishvananda/netlink v1.2.1-beta.2 // indirect
github.com/vishvananda/netns v0.0.4 // indirect
github.com/willscott/go-nfs-client v0.0.0-20240104095149-b44639837b00 // indirect
github.com/yusufpapurcu/wmi v1.2.3 // indirect
golang.org/x/mod v0.12.0 // indirect
golang.org/x/net v0.24.0 // indirect
golang.org/x/sync v0.3.0 // indirect
golang.org/x/tools v0.12.0 // indirect
google.golang.org/grpc v1.56.3 // indirect
)