-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathgo.mod
27 lines (24 loc) · 937 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
module github.com/aws/amazon-vpc-cni-plugins
go 1.19
require (
github.com/Microsoft/go-winio v0.4.17
github.com/Microsoft/hcsshim v0.9.4
github.com/cihub/seelog v0.0.0-20151216151435-d2c6e5aa9fbf
github.com/containernetworking/cni v1.1.2
github.com/coreos/go-iptables v0.6.0
github.com/stretchr/testify v1.8.2
github.com/vishvananda/netlink v1.1.1-0.20210316144550-c21bda41e995
golang.org/x/sys v0.7.0
)
require (
github.com/containerd/cgroups v1.0.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
github.com/vishvananda/netns v0.0.0-20200728191858-db3c7e526aae // indirect
go.opencensus.io v0.22.3 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)