mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-10 18:04:27 +01:00
Update our containerd vendoring. In particular, we're interested in grabbing the updated annotation definitions for defining sandbox sizing. - go get github.com/containerd/containerd@v1.6.0-beta.4 - edit go.mod to remove containerd v1.5.8 replacement directive - go mod vendor - go mod tidy Fixes: #3276 Signed-off-by: Eric Ernst <eric_ernst@apple.com>
40 lines
1.4 KiB
Modula-2
40 lines
1.4 KiB
Modula-2
module github.com/Microsoft/hcsshim
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v0.3.1
|
|
github.com/Microsoft/go-winio v0.4.17
|
|
github.com/cenkalti/backoff/v4 v4.1.1
|
|
github.com/containerd/cgroups v1.0.1
|
|
github.com/containerd/console v1.0.2
|
|
github.com/containerd/containerd v1.5.7
|
|
github.com/containerd/go-runc v1.0.0
|
|
github.com/containerd/ttrpc v1.1.0
|
|
github.com/containerd/typeurl v1.0.2
|
|
github.com/gogo/protobuf v1.3.2
|
|
github.com/golang/mock v1.6.0
|
|
github.com/google/go-cmp v0.5.6
|
|
github.com/google/go-containerregistry v0.5.1
|
|
github.com/linuxkit/virtsock v0.0.0-20201010232012-f8cee7dfc7a3
|
|
github.com/mattn/go-shellwords v1.0.6
|
|
github.com/opencontainers/runc v1.0.2
|
|
github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/urfave/cli v1.22.2
|
|
github.com/vishvananda/netlink v1.1.1-0.20201029203352-d40f9887b852
|
|
github.com/vishvananda/netns v0.0.0-20200728191858-db3c7e526aae
|
|
go.etcd.io/bbolt v1.3.6
|
|
go.opencensus.io v0.22.3
|
|
golang.org/x/net v0.0.0-20210825183410-e898025ed96a // indirect
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
|
golang.org/x/sys v0.0.0-20210510120138-977fb7262007
|
|
google.golang.org/grpc v1.40.0
|
|
)
|
|
|
|
replace (
|
|
google.golang.org/genproto => google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63
|
|
google.golang.org/grpc => google.golang.org/grpc v1.27.1
|
|
)
|