-
Notifications
You must be signed in to change notification settings - Fork 13
/
go.mod
49 lines (44 loc) · 1.84 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
module github.com/foxboron/go-uefi
go 1.21
toolchain go1.21.5
require (
github.com/anatol/vmtest v0.0.0-20220413190228-7a42f1f6d7b8
github.com/pkg/errors v0.9.1
go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1
golang.org/x/crypto v0.16.0
golang.org/x/sys v0.15.0
golang.org/x/text v0.14.0
)
require (
github.com/Netflix/go-expect v0.0.0-20220104043353-73e0943537d2
github.com/hugelgupf/vmtest v0.0.0-20240110072021-f6f07acb7aa1
github.com/spf13/afero v1.9.3
)
require (
github.com/creack/pty v1.1.21 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/google/goterm v0.0.0-20200907032337-555d40f16ae2 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/insomniacslk/dhcp v0.0.0-20231206064809-8c70d406f6d2 // indirect
github.com/josharian/native v1.1.0 // indirect
github.com/klauspost/compress v1.17.4 // indirect
github.com/klauspost/pgzip v1.2.6 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mdlayher/packet v1.1.2 // indirect
github.com/mdlayher/socket v0.5.0 // indirect
github.com/pierrec/lz4/v4 v4.1.14 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/u-root/gobusybox/src v0.0.0-20231224233253-2944a440b6b6 // indirect
github.com/u-root/u-root v0.11.1-0.20230807200058-f87ad7ccb594 // 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
golang.org/x/exp v0.0.0-20231219180239-dc181d75b848 // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/sync v0.5.0 // indirect
golang.org/x/tools v0.16.1 // indirect
src.elv.sh v0.16.0-rc1.0.20220116211855-fda62502ad7f // indirect
)