-
-
Notifications
You must be signed in to change notification settings - Fork 395
/
go.mod
30 lines (25 loc) · 804 Bytes
/
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
module github.com/abiosoft/colima
go 1.20
require (
github.com/coreos/go-semver v0.3.1
github.com/fatih/color v1.18.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.8.1
golang.org/x/term v0.26.0
gopkg.in/yaml.v3 v3.0.1
)
require github.com/stretchr/testify v1.8.4 // indirect
require (
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect
github.com/sevlyar/go-daemon v0.1.6
)
require (
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.20 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.27.0 // indirect
)