forked from abiosoft/colima
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
44 lines (39 loc) · 1.62 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
module github.com/abiosoft/colima
go 1.18
require (
github.com/fatih/color v1.12.0
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.2.1
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
)
require (
github.com/apparentlymart/go-cidr v1.1.0 // indirect
github.com/google/btree v1.0.1 // indirect
github.com/google/gopacket v1.1.19 // indirect
github.com/google/tcpproxy v0.0.0-20200125044825-b6bb9b5b8252 // indirect
github.com/insomniacslk/dhcp v0.0.0-20210812084645-decc701b3665 // indirect
github.com/linuxkit/virtsock v0.0.0-20201010232012-f8cee7dfc7a3 // indirect
github.com/mdlayher/vsock v0.0.0-20210303205602-10d591861736 // indirect
github.com/miekg/dns v1.1.43 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/u-root/uio v0.0.0-20210528114334-82958018845c // indirect
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect
gvisor.dev/gvisor v0.0.0-20210924063838-a1b00da7bd8d // indirect
)
require (
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect
github.com/sevlyar/go-daemon v0.1.5
)
require (
github.com/containers/gvisor-tap-vsock v0.3.0
github.com/docker/go-units v0.4.0
github.com/fsnotify/fsnotify v1.5.4
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
)