File tree Expand file tree Collapse file tree 18 files changed +26
-14
lines changed Expand file tree Collapse file tree 18 files changed +26
-14
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ require (
6
6
github.com/awslabs/soci-snapshotter v0.0.0-local
7
7
github.com/containerd/containerd v1.7.18
8
8
github.com/containerd/log v0.1.0
9
+ github.com/containerd/platforms v0.2.1
9
10
github.com/coreos/go-systemd/v22 v22.5.0
10
11
github.com/docker/cli v27.0.3+incompatible
11
12
github.com/docker/go-metrics v0.0.1
@@ -35,6 +36,7 @@ require (
35
36
github.com/containerd/typeurl/v2 v2.1.1 // indirect
36
37
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
37
38
github.com/davecgh/go-spew v1.1.1 // indirect
39
+ github.com/distribution/reference v0.6.0 // indirect
38
40
github.com/docker/docker-credential-helpers v0.7.0 // indirect
39
41
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect
40
42
github.com/emicklei/go-restful/v3 v3.10.1 // indirect
Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ github.com/containerd/fifo v1.1.0 h1:4I2mbh5stb1u6ycIABlBw9zgtlK8viPI9QkQNRQEEmY
32
32
github.com/containerd/fifo v1.1.0 /go.mod h1:bmC4NWMbXlt2EZ0Hc7Fx7QzTFxgPID13eH0Qu+MAb2o =
33
33
github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I =
34
34
github.com/containerd/log v0.1.0 /go.mod h1:VRRf09a7mHDIRezVKTRCrOq78v577GXq3bSa3EhrzVo =
35
+ github.com/containerd/platforms v0.2.1 h1:zvwtM3rz2YHPQsF2CHYM8+KtB5dvhISiXh5ZpSBQv6A =
36
+ github.com/containerd/platforms v0.2.1 /go.mod h1:XHCb+2/hzowdiut9rkudds9bE5yJ7npe7dG/wG+uFPw =
35
37
github.com/containerd/ttrpc v1.2.4 h1:eQCQK4h9dxDmpOb9QOOMh2NHTfzroH1IkmHiKZi05Oo =
36
38
github.com/containerd/ttrpc v1.2.4 /go.mod h1:ojvb8SJBSch0XkqNO0L0YX/5NxR3UnVk2LzFKBK0upc =
37
39
github.com/containerd/typeurl/v2 v2.1.1 h1:3Q4Pt7i8nYwy2KmQWIw2+1hTvwTE/6w9FqcttATPO/4 =
@@ -44,6 +46,8 @@ github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ3
44
46
github.com/davecgh/go-spew v1.1.0 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
45
47
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
46
48
github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
49
+ github.com/distribution/reference v0.6.0 h1:0IXCQ5g4/QMHHkarYzh5l+u8T3t73zM5QvfrDyIgxBk =
50
+ github.com/distribution/reference v0.6.0 /go.mod h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5Y4f/wlDRiLyi3E =
47
51
github.com/docker/cli v27.0.3+incompatible h1:usGs0/BoBW8MWxGeEtqPMkzOY56jZ6kYlSN5BLDioCQ =
48
52
github.com/docker/cli v27.0.3+incompatible /go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8 =
49
53
github.com/docker/docker-credential-helpers v0.7.0 h1:xtCHsjxogADNZcdv1pKUHXryefjlVRqWqIhk/uXJp0A =
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import (
27
27
"github.com/awslabs/soci-snapshotter/cmd/soci/commands/internal"
28
28
"github.com/awslabs/soci-snapshotter/soci"
29
29
"github.com/containerd/containerd/images"
30
- "github.com/containerd/containerd/ platforms"
30
+ "github.com/containerd/platforms"
31
31
specs "github.com/opencontainers/image-spec/specs-go/v1"
32
32
"github.com/urfave/cli"
33
33
)
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import (
22
22
23
23
"github.com/containerd/containerd/content"
24
24
"github.com/containerd/containerd/images"
25
- "github.com/containerd/containerd/ platforms"
25
+ "github.com/containerd/platforms"
26
26
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
27
27
"github.com/urfave/cli"
28
28
)
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import (
24
24
"github.com/awslabs/soci-snapshotter/cmd/soci/commands/internal"
25
25
"github.com/awslabs/soci-snapshotter/soci"
26
26
"github.com/containerd/containerd/images"
27
- "github.com/containerd/containerd/ platforms"
27
+ "github.com/containerd/platforms"
28
28
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
29
29
"github.com/urfave/cli"
30
30
)
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ require (
6
6
github.com/containerd/containerd v1.7.18
7
7
github.com/containerd/continuity v0.4.3
8
8
github.com/containerd/log v0.1.0
9
+ github.com/containerd/platforms v0.2.1
10
+ github.com/distribution/reference v0.6.0
9
11
github.com/docker/cli v27.0.3+incompatible
10
12
github.com/docker/go-metrics v0.0.1
11
13
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
Original file line number Diff line number Diff line change @@ -31,6 +31,8 @@ github.com/containerd/fifo v1.1.0 h1:4I2mbh5stb1u6ycIABlBw9zgtlK8viPI9QkQNRQEEmY
31
31
github.com/containerd/fifo v1.1.0 /go.mod h1:bmC4NWMbXlt2EZ0Hc7Fx7QzTFxgPID13eH0Qu+MAb2o =
32
32
github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I =
33
33
github.com/containerd/log v0.1.0 /go.mod h1:VRRf09a7mHDIRezVKTRCrOq78v577GXq3bSa3EhrzVo =
34
+ github.com/containerd/platforms v0.2.1 h1:zvwtM3rz2YHPQsF2CHYM8+KtB5dvhISiXh5ZpSBQv6A =
35
+ github.com/containerd/platforms v0.2.1 /go.mod h1:XHCb+2/hzowdiut9rkudds9bE5yJ7npe7dG/wG+uFPw =
34
36
github.com/containerd/ttrpc v1.2.4 h1:eQCQK4h9dxDmpOb9QOOMh2NHTfzroH1IkmHiKZi05Oo =
35
37
github.com/containerd/ttrpc v1.2.4 /go.mod h1:ojvb8SJBSch0XkqNO0L0YX/5NxR3UnVk2LzFKBK0upc =
36
38
github.com/containerd/typeurl/v2 v2.1.1 h1:3Q4Pt7i8nYwy2KmQWIw2+1hTvwTE/6w9FqcttATPO/4 =
@@ -39,6 +41,8 @@ github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ3
39
41
github.com/davecgh/go-spew v1.1.0 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
40
42
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
41
43
github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
44
+ github.com/distribution/reference v0.6.0 h1:0IXCQ5g4/QMHHkarYzh5l+u8T3t73zM5QvfrDyIgxBk =
45
+ github.com/distribution/reference v0.6.0 /go.mod h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5Y4f/wlDRiLyi3E =
42
46
github.com/docker/cli v27.0.3+incompatible h1:usGs0/BoBW8MWxGeEtqPMkzOY56jZ6kYlSN5BLDioCQ =
43
47
github.com/docker/cli v27.0.3+incompatible /go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8 =
44
48
github.com/docker/docker-credential-helpers v0.7.0 h1:xtCHsjxogADNZcdv1pKUHXryefjlVRqWqIhk/uXJp0A =
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import (
27
27
"github.com/awslabs/soci-snapshotter/soci"
28
28
"github.com/awslabs/soci-snapshotter/soci/store"
29
29
"github.com/awslabs/soci-snapshotter/util/testutil"
30
- "github.com/containerd/containerd/ platforms"
30
+ "github.com/containerd/platforms"
31
31
"github.com/opencontainers/go-digest"
32
32
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
33
33
)
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import (
26
26
"github.com/awslabs/soci-snapshotter/config"
27
27
"github.com/awslabs/soci-snapshotter/soci/store"
28
28
shell "github.com/awslabs/soci-snapshotter/util/dockershell"
29
- "github.com/containerd/containerd/ platforms"
29
+ "github.com/containerd/platforms"
30
30
)
31
31
32
32
type testImageIndex struct {
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ import (
49
49
shell "github.com/awslabs/soci-snapshotter/util/dockershell"
50
50
"github.com/awslabs/soci-snapshotter/util/dockershell/compose"
51
51
"github.com/awslabs/soci-snapshotter/util/testutil"
52
- "github.com/containerd/containerd/ platforms"
52
+ "github.com/containerd/platforms"
53
53
"github.com/opencontainers/go-digest"
54
54
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
55
55
)
You can’t perform that action at this time.
0 commit comments