
This tag contains some changes for the Windows shim for retrying stdio named pipe connections if containerd restarts. It also is built with v1.1.0 of ttrpc which has some fixes for a deadlock we'd observed on Windows. Signed-off-by: Daniel Canter <dcanter@microsoft.com>
42 lines
1.7 KiB
Modula-2
42 lines
1.7 KiB
Modula-2
module github.com/containerd/containerd/integration/client
|
|
|
|
go 1.15
|
|
|
|
require (
|
|
github.com/Microsoft/hcsshim v0.9.1
|
|
github.com/Microsoft/hcsshim/test v0.0.0-20210408205431-da33ecd607e1
|
|
github.com/containerd/cgroups v1.0.2
|
|
// the actual version of containerd is replaced with the code at the root of this repository
|
|
github.com/containerd/containerd v1.5.7
|
|
github.com/containerd/containerd/api v1.6.0-beta.1
|
|
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/opencontainers/go-digest v1.0.0
|
|
github.com/opencontainers/image-spec v1.0.2-0.20210819154149-5ad6f50d6283
|
|
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
|
|
golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359
|
|
gotest.tools/v3 v3.0.3
|
|
)
|
|
|
|
replace (
|
|
// use the containerd module from this repository instead of downloading
|
|
//
|
|
// IMPORTANT: this replace rule ONLY replaces containerd itself; dependencies
|
|
// in the "require" section above are still taken into account for version
|
|
// resolution if newer.
|
|
github.com/containerd/containerd => ../../
|
|
github.com/containerd/containerd/api => ../../api
|
|
|
|
// Replace rules below must be kept in sync with the main go.mod file at the
|
|
// root, because that's the actual version expected by the "containerd/containerd"
|
|
// dependency above.
|
|
github.com/gogo/googleapis => github.com/gogo/googleapis v1.3.2
|
|
// 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
|
|
)
|