synchronize replace rules in integration/client go.mod with main go.mod

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

asdlkjasdlkj

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2021-03-25 22:00:26 +01:00
parent 1b05b605c8
commit 6fc9e45000
3 changed files with 38 additions and 104 deletions

View File

@@ -4,9 +4,10 @@ go 1.15
require (
github.com/Microsoft/hcsshim v0.8.15
github.com/Microsoft/hcsshim/test v0.0.0-20210227013316-43a75bb4edd3
github.com/Microsoft/hcsshim/test v0.0.0-20210326183024-65090e5b3e45
github.com/containerd/cgroups v0.0.0-20210114181951-8a68de567b68
github.com/containerd/containerd v1.5.0-beta.3
// the actual version of containerd is replaced with the code at the root of this repository
github.com/containerd/containerd v1.5.0-beta.4
github.com/containerd/go-runc v0.0.0-20201020171139-16b287bc67d0
github.com/containerd/ttrpc v1.0.2
github.com/containerd/typeurl v1.0.1
@@ -15,9 +16,26 @@ require (
github.com/opencontainers/image-spec v1.0.1
github.com/opencontainers/runtime-spec v1.0.3-0.20200929063507-e6143ca7d51d
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.8.0
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
github.com/sirupsen/logrus v1.7.0
golang.org/x/sys v0.0.0-20210324051608-47abb6519492
gotest.tools/v3 v3.0.3
)
replace github.com/containerd/containerd => ../../
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 => ../../
// 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
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
)