forked from k8snetworkplumbingwg/accelerated-bridge-cni
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
35 lines (32 loc) · 1.33 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
module github.com/k8snetworkplumbingwg/accelerated-bridge-cni
go 1.18
require (
github.com/Mellanox/sriovnet v1.1.0
github.com/containernetworking/cni v0.8.1
github.com/containernetworking/plugins v0.8.7
github.com/gofrs/flock v0.8.1
github.com/onsi/ginkgo v1.12.0
github.com/onsi/gomega v1.9.0
github.com/rs/zerolog v1.20.0
github.com/spf13/afero v1.6.0
github.com/stretchr/testify v1.7.0
github.com/vishvananda/netlink v1.1.1-0.20211101163509-b10eb8fe5cf6
)
require (
github.com/coreos/go-iptables v0.4.5 // indirect
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/google/uuid v1.1.1 // indirect
github.com/hpcloud/tail v1.0.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/safchain/ethtool v0.0.0-20190326074333-42ed695e3de8 // indirect
github.com/stretchr/objx v0.1.0 // indirect
github.com/vishvananda/netns v0.0.0-20200728191858-db3c7e526aae // indirect
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect
golang.org/x/sys v0.0.0-20200728102440-3e129f6d46b1 // indirect
golang.org/x/text v0.3.3 // indirect
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 // indirect
gopkg.in/fsnotify.v1 v1.4.7 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)