
ArgsEscaped has now been merged into upstream OCI image spec. This change removes the workaround we were doing in containerd to deserialize the extra json outside of the spec and instead just uses the formal spec types. Signed-off-by: Justin Terry <jlterry@amazon.com>
82 lines
4.0 KiB
Modula-2
82 lines
4.0 KiB
Modula-2
module github.com/containerd/containerd/integration/client
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/Microsoft/hcsshim v0.10.0-rc.1
|
|
github.com/Microsoft/hcsshim/test v0.0.0-20210408205431-da33ecd607e1
|
|
github.com/containerd/cgroups v1.0.5-0.20220816231112-7083cd60b721
|
|
github.com/containerd/containerd v1.6.2 // see replace; the actual version of containerd is replaced with the code at the root of this repository
|
|
github.com/containerd/go-runc v1.0.0
|
|
github.com/containerd/ttrpc v1.1.1-0.20220420014843-944ef4a40df3
|
|
github.com/containerd/typeurl v1.0.3-0.20220422153119-7f6e6d160d67
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0
|
|
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b
|
|
github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/stretchr/testify v1.8.0
|
|
golang.org/x/sys v0.0.0-20220915200043-7b5979e65e41
|
|
)
|
|
|
|
require github.com/AdaLogics/go-fuzz-headers v0.0.0-20220903154154-e8044f6e4c72
|
|
|
|
require (
|
|
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20220912195655-e1f97a00006b // indirect
|
|
github.com/Microsoft/go-winio v0.6.0 // indirect
|
|
github.com/blang/semver v3.5.1+incompatible // indirect
|
|
github.com/cilium/ebpf v0.9.1 // indirect
|
|
github.com/container-orchestrated-devices/container-device-interface v0.5.1 // indirect
|
|
github.com/containerd/console v1.0.3 // indirect
|
|
github.com/containerd/continuity v0.3.0 // indirect
|
|
github.com/containerd/fifo v1.0.0 // indirect
|
|
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
|
|
github.com/cyphar/filepath-securejoin v0.2.3 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect
|
|
github.com/docker/go-units v0.4.0 // indirect
|
|
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
|
github.com/godbus/dbus/v5 v5.0.6 // indirect
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/go-cmp v0.5.8 // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/imdario/mergo v0.3.12 // indirect
|
|
github.com/klauspost/compress v1.15.9 // indirect
|
|
github.com/moby/locker v1.0.1 // indirect
|
|
github.com/moby/sys/mountinfo v0.6.2 // indirect
|
|
github.com/moby/sys/sequential v0.0.0-20220829095930-b22ba8a69b30 // indirect
|
|
github.com/moby/sys/signal v0.7.0 // indirect
|
|
github.com/opencontainers/runc v1.1.4 // indirect
|
|
github.com/opencontainers/runtime-tools v0.0.0-20190417131837-cd1349b7c47e // indirect
|
|
github.com/opencontainers/selinux v1.10.1 // indirect
|
|
github.com/pelletier/go-toml v1.9.3 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect
|
|
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
|
|
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
|
|
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
|
|
go.opencensus.io v0.23.0 // indirect
|
|
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
|
|
golang.org/x/net v0.0.0-20220906165146-f3363e06e74c // indirect
|
|
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
golang.org/x/tools v0.1.12 // indirect
|
|
google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21 // indirect
|
|
google.golang.org/grpc v1.47.0 // indirect
|
|
google.golang.org/protobuf v1.28.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
sigs.k8s.io/yaml v1.3.0 // indirect
|
|
)
|
|
|
|
// 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.
|
|
replace github.com/containerd/containerd => ../../
|