summaryrefslogtreecommitdiffhomepage
path: root/go.mod
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2020-05-05 22:00:14 -0700
committerAdin Scannell <ascannell@google.com>2020-07-09 17:39:47 -0700
commit2afff44403e046078301de39f0252bb57fc018c7 (patch)
treef944f66ffaab8f10029b451755bcb20a3ff40269 /go.mod
parent2f24ab339736315659f26699ab50aa2982d7e890 (diff)
Update shim to build using bazel.
The go.mod dependency tree for the shim was somehow contradictory. After resolving these issues (e.g. explicitly imported k8s 1.14, pulling a specific dbus version), and adding all dependencies, the shim can now be build as part of the regular bazel tree. As part of this process, minor cleanup was done in all the source files: headers were standardized (and include "The gVisor Authors" in addition to the "The containerd Authors" if originally derived from containerd sources), and comments were cleaned up to meet coding standards. This change makes the containerd installation dynamic, so that multiple versions can be tested, and drops the static installer for the VM image itself. This change also updates test/root/crictl_test.go and related utilities, so that the containerd tests can be run on any version (and in cases where it applies, they can be run on both v1 and v2 as parameterized tests).
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod22
1 files changed, 21 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index 434fa713f..ffc33a349 100644
--- a/go.mod
+++ b/go.mod
@@ -3,18 +3,38 @@ module gvisor.dev/gvisor
go 1.14
require (
+ github.com/BurntSushi/toml v0.3.1
+ github.com/Microsoft/go-winio v0.4.14 // indirect
+ github.com/Microsoft/hcsshim v0.8.6 // indirect
github.com/cenkalti/backoff v0.0.0-20190506075156-2146c9339422
+ github.com/containerd/cgroups v0.0.0-20200520162414-666f4a009ffb
+ github.com/containerd/console v0.0.0-20180822173158-c12b1e7919c1
+ github.com/containerd/containerd v0.0.0-20190510190154-d0319ec44af6
+ github.com/containerd/continuity v0.0.0-20190815185530-f2a389ac0a02 // indirect
+ github.com/containerd/cri v0.0.0-20190308093238-8a0bd84b9a4c
+ github.com/containerd/fifo v0.0.0-20180307165137-3d5202aec260
+ github.com/containerd/go-runc v0.0.0-20180907222934-5a6d9f37cfa3
+ github.com/containerd/ttrpc v0.0.0-20190411181408-699c4e40d1e7 // indirect
+ github.com/containerd/typeurl v0.0.0-20180627222232-a93fcdb778cd
github.com/gofrs/flock v0.6.1-0.20180915234121-886344bea079
+ github.com/gogo/protobuf v1.3.1
github.com/golang/protobuf v1.3.1
github.com/google/btree v1.0.0
+ github.com/google/go-cmp v0.3.1 // indirect
github.com/google/subcommands v0.0.0-20190508160503-636abe8753b8
github.com/kr/pretty v0.2.0 // indirect
github.com/kr/pty v1.1.1
- github.com/opencontainers/runtime-spec v0.1.2-0.20171211145439-b2d941ef6a78
+ github.com/opencontainers/go-digest v0.0.0-20180430190053-c9281466c8b2 // indirect
+ github.com/opencontainers/runc v1.0.0-rc8 // indirect
+ github.com/opencontainers/runtime-spec v1.0.2
github.com/syndtr/gocapability v0.0.0-20180916011248-d98352740cb2
github.com/vishvananda/netlink v1.0.1-0.20190318003149-adb577d4a45e
github.com/vishvananda/netns v0.0.0-20171111001504-be1fbeda1936 // indirect
+ golang.org/x/net v0.0.0-20170716174642-b3756b4b77d7 // indirect
golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527
golang.org/x/time v0.0.0-20191024005414-555d28b269f0
+ google.golang.org/genproto v0.0.0-20170523043604-d80a6e20e776 // indirect
+ google.golang.org/grpc v1.12.0
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
+ gotest.tools v2.2.0+incompatible // indirect
)