-
Notifications
You must be signed in to change notification settings - Fork 26
/
go.mod
28 lines (25 loc) · 867 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
module github.com/intel/bond-cni
go 1.21
toolchain go1.23.2
require (
github.com/containernetworking/cni v1.2.3
github.com/containernetworking/plugins v1.6.0
github.com/onsi/ginkgo/v2 v2.20.2
github.com/onsi/gomega v1.34.2
github.com/vishvananda/netlink v1.3.0
github.com/vishvananda/netns v0.0.4
)
require (
github.com/coreos/go-iptables v0.8.0 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/pprof v0.0.0-20240827171923-fa2c70bbbfe5 // indirect
github.com/safchain/ethtool v0.4.1 // indirect
golang.org/x/net v0.28.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/text v0.17.0 // indirect
golang.org/x/tools v0.24.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
sigs.k8s.io/knftables v0.0.17 // indirect
)