-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
30 lines (26 loc) · 906 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/pmarchini/giogo
go 1.23.0
require (
github.com/opencontainers/runtime-spec v1.2.0
github.com/spf13/cobra v1.8.1
)
require (
github.com/cilium/ebpf v0.11.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sirupsen/logrus v1.9.0 // indirect
github.com/stretchr/objx v0.5.2 // indirect
golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/containerd/cgroups/v3 v3.0.3
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/godbus/dbus/v5 v5.0.4 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.9.0
golang.org/x/sys v0.6.0 // indirect
)