forked from u-root/u-root
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
86 lines (82 loc) · 3.58 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
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
78
79
80
81
82
83
84
85
86
module github.com/u-root/u-root
go 1.19
require (
github.com/beevik/ntp v0.3.0
github.com/c-bata/go-prompt v0.2.6
github.com/cenkalti/backoff/v4 v4.1.3
github.com/creack/pty v1.1.15
github.com/davecgh/go-spew v1.1.1
github.com/dustin/go-humanize v1.0.0
github.com/gliderlabs/ssh v0.1.2-0.20181113160402-cbabf5414432
github.com/gojuno/minimock/v3 v3.0.8
github.com/google/go-cmp v0.5.6
github.com/google/go-tpm v0.3.3
github.com/google/goexpect v0.0.0-20191001010744-5b6988669ffa
github.com/google/uuid v1.3.0
github.com/insomniacslk/dhcp v0.0.0-20211209223715-7d93572ebe8e
github.com/intel-go/cpuid v0.0.0-20200819041909-2aa72927c3e2
github.com/kevinburke/ssh_config v1.1.0
github.com/klauspost/compress v1.10.6
github.com/klauspost/pgzip v1.2.4
github.com/kr/pty v1.1.8
github.com/nanmu42/limitio v1.0.0
github.com/orangecms/go-framebuffer v0.0.0-20200613202404-a0700d90c330
github.com/pborman/getopt/v2 v2.1.0
github.com/pierrec/lz4/v4 v4.1.14
github.com/rck/unit v0.0.3
github.com/rekby/gpt v0.0.0-20200219180433-a930afbc6edc
github.com/safchain/ethtool v0.0.0-20200218184317-f459e2d13664
github.com/spf13/pflag v1.0.5
github.com/u-root/gobusybox/src v0.0.0-20220728145311-85dc1fd1bc75
github.com/u-root/iscsinl v0.1.1-0.20210528121423-84c32645822a
github.com/ulikunitz/xz v0.5.8
github.com/vishvananda/netlink v1.1.1-0.20211118161826-650dca95af54
github.com/vtolstov/go-ioctl v0.0.0-20151206205506-6be9cced4810
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d
golang.org/x/term v0.0.0-20210916214954-140adaaadfaf
golang.org/x/text v0.3.7
golang.org/x/tools v0.1.11
gopkg.in/yaml.v2 v2.2.8
mvdan.cc/sh/v3 v3.4.1
pack.ag/tftp v1.0.1-0.20181129014014-07909dfbde3c
src.elv.sh v0.16.0-rc1.0.20220116211855-fda62502ad7f
)
require (
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
github.com/google/goterm v0.0.0-20200907032337-555d40f16ae2 // indirect
github.com/jsimonetti/rtnetlink v0.0.0-20201110080708-d2c240429e6c // indirect
github.com/kaey/framebuffer v0.0.0-20140402104929-7b385489a1ff // indirect
github.com/mattn/go-colorable v0.1.7 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mattn/go-tty v0.0.3 // indirect
github.com/mdlayher/ethernet v0.0.0-20190606142754-0394541c37b7 // indirect
github.com/mdlayher/netlink v1.1.1 // indirect
github.com/mdlayher/raw v0.0.0-20191009151244-50f2db8cc065 // indirect
github.com/pkg/term v1.2.0-beta.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/u-root/uio v0.0.0-20220204230159-dac05f7d2cb4 // indirect
github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f // indirect
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
google.golang.org/grpc v1.27.1 // indirect
)
retract (
// Published v7 too early (before migrating to go modules)
v7.0.0+incompatible
// Published v6 too early (before migrating to go modules)
v6.0.0+incompatible
// Published v5 too early (before migrating to go modules)
v5.0.0+incompatible
// Published v4 too early (before migrating to go modules)
v4.0.0+incompatible
// Published v3 too early (before migrating to go modules)
v3.0.0+incompatible
// Published v2 too early (before migrating to go modules)
v2.0.0+incompatible
// Published v1 too early (before migrating to go modules)
[v1.0.0, v1.0.1]
)