forked from abiosoft/colima
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
52 lines (47 loc) · 1.77 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/abiosoft/colima
go 1.20
require (
github.com/coreos/go-semver v0.3.1
github.com/fatih/color v1.15.0
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
github.com/rjeczalik/notify v0.9.3
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.7.0
golang.org/x/term v0.11.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/Microsoft/go-winio v0.6.1 // indirect
github.com/apparentlymart/go-cidr v1.1.0 // indirect
github.com/google/btree v1.1.2 // indirect
github.com/google/gopacket v1.1.19 // indirect
github.com/insomniacslk/dhcp v0.0.0-20221215072855-de60144f33f8 // indirect
github.com/josharian/native v1.1.0 // indirect
github.com/linuxkit/virtsock v0.0.0-20220523201153-1a23e78aa7a2 // indirect
github.com/mdlayher/socket v0.4.1 // indirect
github.com/mdlayher/vsock v1.2.1 // indirect
github.com/miekg/dns v1.1.55 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/u-root/uio v0.0.0-20221213070652-c3537552635f // indirect
golang.org/x/crypto v0.11.0 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/net v0.12.0 // indirect
golang.org/x/sync v0.3.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.9.3 // indirect
gvisor.dev/gvisor v0.0.0-20230715022000-fd277b20b8db // indirect
inet.af/tcpproxy v0.0.0-20221017015627-91f861402626 // indirect
)
require (
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect
github.com/sevlyar/go-daemon v0.1.6
)
require (
github.com/containers/gvisor-tap-vsock v0.7.0
github.com/docker/go-units v0.5.0
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.11.0 // indirect
)