Skip to content

Commit f10529a

Browse files
authored
Add go.mod and go.sum files (#2117)
* Add go.mod and go.sum files * revert makefile changes
1 parent 8590b5a commit f10529a

File tree

141 files changed

+61873
-22
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+61873
-22
lines changed

.gitignore

-22
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,4 @@
22
*.swp
33
_output
44
.DS_Store
5-
**/1-19/go.mod
6-
**/1-19/go.sum
7-
**/1-20/go.mod
8-
**/1-20/go.sum
9-
**/1-21/go.mod
10-
**/1-21/go.sum
11-
**/1-22/go.mod
12-
**/1-22/go.sum
13-
**/1-23/go.mod
14-
**/1-23/go.sum
15-
**/1-24/go.mod
16-
**/1-24/go.sum
17-
**/1-25/go.mod
18-
**/1-25/go.sum
19-
**/1-26/go.mod
20-
**/1-26/go.sum
21-
**/1-27/go.mod
22-
**/1-27/go.sum
23-
**/*/server/go.mod
24-
**/*/server/go.sum
25-
**/*/etcdctl/go.mod
26-
**/*/etcdctl/go.sum
275

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
module github.com/containernetworking/plugins
2+
3+
go 1.20
4+
5+
require (
6+
github.com/Microsoft/hcsshim v0.9.9
7+
github.com/alexflint/go-filemutex v1.2.0
8+
github.com/buger/jsonparser v1.1.1
9+
github.com/containernetworking/cni v1.1.2
10+
github.com/coreos/go-iptables v0.6.0
11+
github.com/coreos/go-systemd/v22 v22.5.0
12+
github.com/d2g/dhcp4 v0.0.0-20170904100407-a1d1b6c41b1c
13+
github.com/d2g/dhcp4client v1.0.0
14+
github.com/d2g/dhcp4server v0.0.0-20181031114812-7d4a0a7f59a5
15+
github.com/godbus/dbus/v5 v5.1.0
16+
github.com/mattn/go-shellwords v1.0.12
17+
github.com/networkplumbing/go-nft v0.3.0
18+
github.com/onsi/ginkgo/v2 v2.9.2
19+
github.com/onsi/gomega v1.27.6
20+
github.com/opencontainers/selinux v1.11.0
21+
github.com/safchain/ethtool v0.3.0
22+
github.com/vishvananda/netlink v1.2.1-beta.2
23+
golang.org/x/sys v0.7.0
24+
)
25+
26+
require (
27+
github.com/Microsoft/go-winio v0.6.0 // indirect
28+
github.com/containerd/cgroups v1.1.0 // indirect
29+
github.com/go-logr/logr v1.2.4 // indirect
30+
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
31+
github.com/gogo/protobuf v1.3.2 // indirect
32+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
33+
github.com/google/go-cmp v0.5.9 // indirect
34+
github.com/google/pprof v0.0.0-20230323073829-e72429f035bd // indirect
35+
github.com/pkg/errors v0.9.1 // indirect
36+
github.com/sirupsen/logrus v1.9.0 // indirect
37+
github.com/vishvananda/netns v0.0.4 // indirect
38+
go.opencensus.io v0.24.0 // indirect
39+
golang.org/x/mod v0.9.0 // indirect
40+
golang.org/x/net v0.8.0 // indirect
41+
golang.org/x/text v0.8.0 // indirect
42+
golang.org/x/tools v0.7.0 // indirect
43+
gopkg.in/yaml.v3 v3.0.1 // indirect
44+
)

projects/containernetworking/plugins/1-23/go.sum

+1,095
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
module github.com/containernetworking/plugins
2+
3+
go 1.20
4+
5+
require (
6+
github.com/Microsoft/hcsshim v0.9.9
7+
github.com/alexflint/go-filemutex v1.2.0
8+
github.com/buger/jsonparser v1.1.1
9+
github.com/containernetworking/cni v1.1.2
10+
github.com/coreos/go-iptables v0.6.0
11+
github.com/coreos/go-systemd/v22 v22.5.0
12+
github.com/d2g/dhcp4 v0.0.0-20170904100407-a1d1b6c41b1c
13+
github.com/d2g/dhcp4client v1.0.0
14+
github.com/d2g/dhcp4server v0.0.0-20181031114812-7d4a0a7f59a5
15+
github.com/godbus/dbus/v5 v5.1.0
16+
github.com/mattn/go-shellwords v1.0.12
17+
github.com/networkplumbing/go-nft v0.3.0
18+
github.com/onsi/ginkgo/v2 v2.9.2
19+
github.com/onsi/gomega v1.27.6
20+
github.com/opencontainers/selinux v1.11.0
21+
github.com/safchain/ethtool v0.3.0
22+
github.com/vishvananda/netlink v1.2.1-beta.2
23+
golang.org/x/sys v0.7.0
24+
)
25+
26+
require (
27+
github.com/Microsoft/go-winio v0.6.0 // indirect
28+
github.com/containerd/cgroups v1.1.0 // indirect
29+
github.com/go-logr/logr v1.2.4 // indirect
30+
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
31+
github.com/gogo/protobuf v1.3.2 // indirect
32+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
33+
github.com/google/go-cmp v0.5.9 // indirect
34+
github.com/google/pprof v0.0.0-20230323073829-e72429f035bd // indirect
35+
github.com/pkg/errors v0.9.1 // indirect
36+
github.com/sirupsen/logrus v1.9.0 // indirect
37+
github.com/vishvananda/netns v0.0.4 // indirect
38+
go.opencensus.io v0.24.0 // indirect
39+
golang.org/x/mod v0.9.0 // indirect
40+
golang.org/x/net v0.8.0 // indirect
41+
golang.org/x/text v0.8.0 // indirect
42+
golang.org/x/tools v0.7.0 // indirect
43+
gopkg.in/yaml.v3 v3.0.1 // indirect
44+
)

projects/containernetworking/plugins/1-24/go.sum

+1,095
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
module github.com/containernetworking/plugins
2+
3+
go 1.20
4+
5+
require (
6+
github.com/Microsoft/hcsshim v0.9.9
7+
github.com/alexflint/go-filemutex v1.2.0
8+
github.com/buger/jsonparser v1.1.1
9+
github.com/containernetworking/cni v1.1.2
10+
github.com/coreos/go-iptables v0.6.0
11+
github.com/coreos/go-systemd/v22 v22.5.0
12+
github.com/d2g/dhcp4 v0.0.0-20170904100407-a1d1b6c41b1c
13+
github.com/d2g/dhcp4client v1.0.0
14+
github.com/d2g/dhcp4server v0.0.0-20181031114812-7d4a0a7f59a5
15+
github.com/godbus/dbus/v5 v5.1.0
16+
github.com/mattn/go-shellwords v1.0.12
17+
github.com/networkplumbing/go-nft v0.3.0
18+
github.com/onsi/ginkgo/v2 v2.9.2
19+
github.com/onsi/gomega v1.27.6
20+
github.com/opencontainers/selinux v1.11.0
21+
github.com/safchain/ethtool v0.3.0
22+
github.com/vishvananda/netlink v1.2.1-beta.2
23+
golang.org/x/sys v0.7.0
24+
)
25+
26+
require (
27+
github.com/Microsoft/go-winio v0.6.0 // indirect
28+
github.com/containerd/cgroups v1.1.0 // indirect
29+
github.com/go-logr/logr v1.2.4 // indirect
30+
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
31+
github.com/gogo/protobuf v1.3.2 // indirect
32+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
33+
github.com/google/go-cmp v0.5.9 // indirect
34+
github.com/google/pprof v0.0.0-20230323073829-e72429f035bd // indirect
35+
github.com/pkg/errors v0.9.1 // indirect
36+
github.com/sirupsen/logrus v1.9.0 // indirect
37+
github.com/vishvananda/netns v0.0.4 // indirect
38+
go.opencensus.io v0.24.0 // indirect
39+
golang.org/x/mod v0.9.0 // indirect
40+
golang.org/x/net v0.8.0 // indirect
41+
golang.org/x/text v0.8.0 // indirect
42+
golang.org/x/tools v0.7.0 // indirect
43+
gopkg.in/yaml.v3 v3.0.1 // indirect
44+
)

0 commit comments

Comments
 (0)