
* Update hcsshim to v0.8.14 * Update go-winio to v0.4.16 This brings in some vhd package changes from winio, and the compute storage api bindings for the shim. This is to facilitate some coming functionality for the windows snapshotter as well as possibly for future work down the line for the windows differ. Signed-off-by: Daniel Canter <dcanter@microsoft.com>
77 lines
3.1 KiB
Modula-2
77 lines
3.1 KiB
Modula-2
module github.com/containerd/containerd
|
|
|
|
go 1.15
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v0.3.1
|
|
github.com/Microsoft/go-winio v0.4.16
|
|
github.com/Microsoft/hcsshim v0.8.14
|
|
github.com/Microsoft/hcsshim/test v0.0.0-20201218223536-d3e5debf77da
|
|
github.com/containerd/aufs v0.0.0-20200908144142-dab0cbea06f4
|
|
github.com/containerd/btrfs v0.0.0-20201111183144-404b9149801e
|
|
github.com/containerd/cgroups v0.0.0-20200824123100-0b889c03f102
|
|
github.com/containerd/console v1.0.1
|
|
github.com/containerd/continuity v0.0.0-20201208142359-180525291bb7
|
|
github.com/containerd/fifo v0.0.0-20201026212402-0724c46b320c
|
|
github.com/containerd/go-cni v1.0.1
|
|
github.com/containerd/go-runc v0.0.0-20200220073739-7016d3ce2328
|
|
github.com/containerd/imgcrypt v1.0.1
|
|
github.com/containerd/nri v0.0.0-20201007170849-eb1350a75164
|
|
github.com/containerd/ttrpc v1.0.2
|
|
github.com/containerd/typeurl v1.0.1
|
|
github.com/containerd/zfs v0.0.0-20200918131355-0a33824f23a2
|
|
github.com/containernetworking/plugins v0.8.6
|
|
github.com/coreos/go-systemd/v22 v22.1.0
|
|
github.com/davecgh/go-spew v1.1.1
|
|
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c
|
|
github.com/docker/go-metrics v0.0.1
|
|
github.com/docker/go-units v0.4.0
|
|
github.com/emicklei/go-restful v2.9.5+incompatible
|
|
github.com/fsnotify/fsnotify v1.4.9
|
|
github.com/gogo/googleapis v1.4.0
|
|
github.com/gogo/protobuf v1.3.1
|
|
github.com/golang/protobuf v1.4.3
|
|
github.com/google/go-cmp v0.5.1
|
|
github.com/google/uuid v1.1.1
|
|
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
|
|
github.com/hashicorp/go-multierror v1.0.0
|
|
github.com/imdario/mergo v0.3.10
|
|
github.com/klauspost/compress v1.11.3
|
|
github.com/moby/sys/symlink v0.1.0
|
|
github.com/opencontainers/go-digest v1.0.0
|
|
github.com/opencontainers/image-spec v1.0.1
|
|
github.com/opencontainers/runc v1.0.0-rc92
|
|
github.com/opencontainers/runtime-spec v1.0.3-0.20200728170252-4d89ac9fbff6
|
|
github.com/opencontainers/selinux v1.8.0
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/prometheus/client_golang v1.7.1
|
|
github.com/sirupsen/logrus v1.7.0
|
|
github.com/stretchr/testify v1.4.0
|
|
github.com/syndtr/gocapability v0.0.0-20180916011248-d98352740cb2
|
|
github.com/tchap/go-patricia v2.2.6+incompatible
|
|
github.com/urfave/cli v1.22.2
|
|
go.etcd.io/bbolt v1.3.5
|
|
golang.org/x/net v0.0.0-20200707034311-ab3426394381
|
|
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
|
|
golang.org/x/sys v0.0.0-20201202213521-69691e467435
|
|
google.golang.org/grpc v1.30.0
|
|
gotest.tools/v3 v3.0.2
|
|
k8s.io/api v0.19.4
|
|
k8s.io/apimachinery v0.19.4
|
|
k8s.io/apiserver v0.19.4
|
|
k8s.io/client-go v0.19.4
|
|
k8s.io/component-base v0.19.4
|
|
k8s.io/cri-api v0.19.4
|
|
k8s.io/klog/v2 v2.2.0
|
|
k8s.io/utils v0.0.0-20200729134348-d5654de09c73
|
|
)
|
|
|
|
replace (
|
|
github.com/gogo/googleapis => github.com/gogo/googleapis v1.3.2
|
|
github.com/golang/protobuf => github.com/golang/protobuf v1.3.5
|
|
// urfave/cli must be <= v1.22.1 due to a regression: https://github.com/urfave/cli/issues/1092
|
|
github.com/urfave/cli => github.com/urfave/cli v1.22.1
|
|
google.golang.org/genproto => google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63
|
|
google.golang.org/grpc => google.golang.org/grpc v1.27.1
|
|
)
|