-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathgo.mod
More file actions
21 lines (18 loc) · 729 Bytes
/
go.mod
File metadata and controls
21 lines (18 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module github.com/engineerd/wasm-to-oci
go 1.16
require (
github.com/containerd/containerd v1.5.5
github.com/docker/cli v20.10.7+incompatible
github.com/docker/distribution v2.7.1+incompatible
github.com/docker/docker v17.12.1-ce+incompatible // indirect
github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c
github.com/opencontainers/image-spec v1.0.1
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.2.1
github.com/theupdateframework/notary v0.7.0
oras.land/oras-go v0.4.0
)
replace (
github.com/docker/distribution => github.com/docker/distribution v0.0.0-20191216044856-a8371794149d
github.com/docker/docker => github.com/moby/moby v17.12.0-ce-rc1.0.20200618181300-9dc6525e6118+incompatible
)