|
1 | 1 | module github.com/GoogleContainerTools/container-structure-test
|
2 | 2 |
|
3 |
| -go 1.17 |
| 3 | +go 1.19 |
4 | 4 |
|
5 | 5 | require (
|
6 |
| - github.com/GoogleContainerTools/container-diff v0.14.1-0.20190219205308-3f6b025c016c |
7 |
| - github.com/fsouza/go-dockerclient v1.3.6 |
8 |
| - github.com/google/go-cmp v0.5.6 |
9 |
| - github.com/google/go-containerregistry v0.5.1 |
| 6 | + github.com/GoogleContainerTools/container-diff v0.17.0 |
| 7 | + github.com/fsouza/go-dockerclient v1.9.0 |
| 8 | + github.com/google/go-cmp v0.5.9 |
| 9 | + github.com/google/go-containerregistry v0.12.1 |
| 10 | + github.com/opencontainers/image-spec v1.1.0-rc2 |
10 | 11 | github.com/pkg/errors v0.9.1
|
11 |
| - github.com/sirupsen/logrus v1.8.1 |
12 |
| - github.com/spf13/cobra v1.5.0 |
13 |
| - golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 |
| 12 | + github.com/sirupsen/logrus v1.9.0 |
| 13 | + github.com/spf13/cobra v1.6.1 |
| 14 | + golang.org/x/crypto v0.3.0 |
14 | 15 | gopkg.in/yaml.v2 v2.4.0
|
15 | 16 | )
|
16 | 17 |
|
17 | 18 | require (
|
18 | 19 | github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
|
19 |
| - github.com/Microsoft/go-winio v0.4.17 // indirect |
20 |
| - github.com/Microsoft/hcsshim v0.9.0 // indirect |
21 |
| - github.com/containerd/containerd v1.5.7 // indirect |
22 |
| - github.com/containerd/stargz-snapshotter/estargz v0.4.1 // indirect |
23 |
| - github.com/docker/cli v0.0.0-20191017083524-a8ff7f821017 // indirect |
24 |
| - github.com/docker/distribution v2.7.1+incompatible // indirect |
25 |
| - github.com/docker/docker v20.10.8+incompatible // indirect |
26 |
| - github.com/docker/docker-credential-helpers v0.6.3 // indirect |
| 20 | + github.com/Microsoft/go-winio v0.6.0 // indirect |
| 21 | + github.com/Microsoft/hcsshim v0.9.5 // indirect |
| 22 | + github.com/containerd/cgroups v1.0.4 // indirect |
| 23 | + github.com/containerd/containerd v1.6.10 // indirect |
| 24 | + github.com/containerd/stargz-snapshotter/estargz v0.13.0 // indirect |
| 25 | + github.com/docker/cli v20.10.21+incompatible // indirect |
| 26 | + github.com/docker/distribution v2.8.1+incompatible // indirect |
| 27 | + github.com/docker/docker v20.10.21+incompatible // indirect |
| 28 | + github.com/docker/docker-credential-helpers v0.7.0 // indirect |
27 | 29 | github.com/docker/go-connections v0.4.0 // indirect
|
28 |
| - github.com/docker/go-units v0.4.0 // indirect |
| 30 | + github.com/docker/go-units v0.5.0 // indirect |
29 | 31 | github.com/gogo/protobuf v1.3.2 // indirect
|
30 |
| - github.com/golang/protobuf v1.5.0 // indirect |
| 32 | + github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect |
| 33 | + github.com/golang/protobuf v1.5.2 // indirect |
31 | 34 | github.com/ijc/Gotty v0.0.0-20170406111628-a8b993ba6abd // indirect
|
32 |
| - github.com/inconshreveable/mousetrap v1.0.0 // indirect |
33 |
| - github.com/moby/sys/mount v0.3.0 // indirect |
34 |
| - github.com/moby/sys/mountinfo v0.5.0 // indirect |
35 |
| - github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect |
| 35 | + github.com/inconshreveable/mousetrap v1.0.1 // indirect |
| 36 | + github.com/klauspost/compress v1.15.12 // indirect |
| 37 | + github.com/mitchellh/go-homedir v1.1.0 // indirect |
| 38 | + github.com/moby/sys/mount v0.3.3 // indirect |
| 39 | + github.com/moby/sys/mountinfo v0.6.2 // indirect |
| 40 | + github.com/moby/term v0.0.0-20221105221325-4eb28fa6025c // indirect |
| 41 | + github.com/morikuni/aec v1.0.0 // indirect |
36 | 42 | github.com/opencontainers/go-digest v1.0.0 // indirect
|
37 |
| - github.com/opencontainers/image-spec v1.0.1 // indirect |
38 |
| - github.com/opencontainers/runc v1.0.3 // indirect |
| 43 | + github.com/opencontainers/runc v1.1.4 // indirect |
39 | 44 | github.com/spf13/pflag v1.0.5 // indirect
|
40 |
| - golang.org/x/net v0.0.0-20210825183410-e898025ed96a // indirect |
41 |
| - golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect |
42 |
| - golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359 // indirect |
43 |
| - golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect |
44 |
| - google.golang.org/genproto v0.0.0-20201110150050-8816d57aaa9a // indirect |
45 |
| - google.golang.org/grpc v1.40.0 // indirect |
46 |
| - google.golang.org/protobuf v1.26.0 // indirect |
| 45 | + github.com/vbatts/tar-split v0.11.2 // indirect |
| 46 | + go.opencensus.io v0.24.0 // indirect |
| 47 | + golang.org/x/mod v0.7.0 // indirect |
| 48 | + golang.org/x/net v0.2.0 // indirect |
| 49 | + golang.org/x/sync v0.1.0 // indirect |
| 50 | + golang.org/x/sys v0.2.0 // indirect |
| 51 | + golang.org/x/term v0.2.0 // indirect |
| 52 | + golang.org/x/tools v0.3.0 // indirect |
| 53 | + google.golang.org/genproto v0.0.0-20221117204609-8f9c96812029 // indirect |
| 54 | + google.golang.org/grpc v1.50.1 // indirect |
| 55 | + google.golang.org/protobuf v1.28.1 // indirect |
47 | 56 | )
|
0 commit comments