-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
29 lines (26 loc) · 1.05 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
module github.com/cnabio/image-relocation
go 1.18
require (
github.com/docker/distribution v2.7.0+incompatible
github.com/google/go-containerregistry v0.0.0-20191015185424-71da34e4d9b3
github.com/onsi/ginkgo v1.10.1
github.com/onsi/gomega v1.7.0
github.com/opencontainers/go-digest v1.0.0-rc1
github.com/pkg/errors v0.8.1
github.com/spf13/cobra v0.0.5
)
require (
github.com/docker/cli v0.0.0-20190925022749-754388324470 // indirect
github.com/docker/docker-credential-helpers v0.6.3 // indirect
github.com/google/go-cmp v0.3.0 // indirect
github.com/hpcloud/tail v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect
golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
golang.org/x/text v0.3.2 // indirect
gopkg.in/fsnotify.v1 v1.4.7 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v2 v2.2.2 // indirect
)