-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgo.mod
64 lines (61 loc) · 2.42 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
module github.com/mac-vz/macvz
go 1.18
require (
github.com/Code-Hex/vz/v2 v2.2.0
github.com/alessio/shellescape v1.4.1
github.com/cheggaaa/pb/v3 v3.0.8
github.com/containerd/continuity v0.2.2
github.com/coreos/go-semver v0.3.0
github.com/diskfs/go-diskfs v1.2.0
github.com/docker/go-units v0.4.0
github.com/elastic/go-libaudit/v2 v2.2.0
github.com/fxamacker/cbor/v2 v2.4.0
github.com/h2non/filetype v1.1.3
github.com/hashicorp/go-multierror v1.1.1
github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87
github.com/joho/godotenv v1.4.0
github.com/lima-vm/sshocker v0.2.2
github.com/mattn/go-isatty v0.0.14
github.com/mdlayher/vsock v1.1.1
github.com/miekg/dns v1.1.47
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/mapstructure v1.5.0
github.com/norouter/norouter v0.6.4
github.com/nxadm/tail v1.4.8
github.com/opencontainers/go-digest v1.0.0
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.4.0
github.com/xorcare/pointer v1.1.0
github.com/yalue/native_endian v1.0.2
golang.org/x/sys v0.0.0-20220808155132-1c4a2a72c664
gopkg.in/yaml.v2 v2.4.0
gotest.tools/v3 v3.1.0
)
require (
github.com/Microsoft/go-winio v0.5.2 // indirect
github.com/VividCortex/ewma v1.1.1 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/google/go-cmp v0.5.7 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-runewidth v0.0.12 // indirect
github.com/mdlayher/socket v0.2.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/rs/xid v1.4.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.7.0 // indirect
github.com/x448/float16 v0.8.4 // indirect
golang.org/x/mod v0.5.0 // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/tools v0.1.6-0.20210726203631-07bc1bf47fb2 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/djherbis/times.v1 v1.2.0 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)