|
1 | 1 | module go.arcalot.io/arcaflow-container-toolkit
|
2 | 2 |
|
3 |
| -go 1.18 |
| 3 | +go 1.21 |
4 | 4 |
|
5 | 5 | require (
|
6 | 6 | github.com/creasty/defaults v1.7.0
|
7 |
| - github.com/docker/docker v24.0.7+incompatible |
8 |
| - github.com/spf13/cobra v1.7.0 |
9 |
| - github.com/spf13/viper v1.16.0 |
10 |
| - go.arcalot.io/assert v1.6.0 |
11 |
| - go.arcalot.io/log v1.2.0 |
12 |
| - go.uber.org/mock v0.3.0 |
| 7 | + github.com/docker/docker v25.0.2+incompatible |
| 8 | + github.com/spf13/cobra v1.8.0 |
| 9 | + github.com/spf13/viper v1.18.2 |
| 10 | + go.arcalot.io/assert v1.7.0 |
| 11 | + go.arcalot.io/log/v2 v2.1.0 |
| 12 | + go.uber.org/mock v0.4.0 |
13 | 13 | )
|
14 | 14 |
|
15 | 15 | require (
|
16 | 16 | github.com/Microsoft/go-winio v0.6.1 // indirect
|
17 |
| - github.com/Microsoft/hcsshim v0.11.1 // indirect |
18 |
| - github.com/containerd/containerd v1.7.6 // indirect |
| 17 | + github.com/containerd/containerd v1.7.13 // indirect |
| 18 | + github.com/containerd/log v0.1.0 // indirect |
19 | 19 | github.com/distribution/reference v0.5.0 // indirect
|
20 |
| - github.com/docker/distribution v2.8.3+incompatible // indirect |
21 | 20 | github.com/docker/go-connections v0.4.0 // indirect
|
22 | 21 | github.com/docker/go-units v0.5.0 // indirect
|
23 |
| - github.com/fsnotify/fsnotify v1.6.0 // indirect |
| 22 | + github.com/felixge/httpsnoop v1.0.3 // indirect |
| 23 | + github.com/fsnotify/fsnotify v1.7.0 // indirect |
| 24 | + github.com/go-logr/logr v1.2.4 // indirect |
| 25 | + github.com/go-logr/stdr v1.2.2 // indirect |
24 | 26 | github.com/gogo/protobuf v1.3.2 // indirect
|
25 | 27 | github.com/hashicorp/hcl v1.0.0 // indirect
|
26 | 28 | github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
27 |
| - github.com/klauspost/compress v1.16.7 // indirect |
| 29 | + github.com/klauspost/compress v1.17.0 // indirect |
28 | 30 | github.com/magiconair/properties v1.8.7 // indirect
|
29 | 31 | github.com/mitchellh/mapstructure v1.5.0 // indirect
|
30 | 32 | github.com/moby/patternmatcher v0.6.0 // indirect
|
31 | 33 | github.com/moby/sys/sequential v0.5.0 // indirect
|
| 34 | + github.com/moby/sys/user v0.1.0 // indirect |
32 | 35 | github.com/moby/term v0.5.0 // indirect
|
33 | 36 | github.com/morikuni/aec v1.0.0 // indirect
|
34 | 37 | github.com/opencontainers/go-digest v1.0.0 // indirect
|
35 | 38 | github.com/opencontainers/image-spec v1.1.0-rc5.0.20230922152145-93f6e65855a1 // indirect
|
36 |
| - github.com/opencontainers/runc v1.1.9 // indirect |
37 |
| - github.com/pelletier/go-toml/v2 v2.1.0 // indirect |
| 39 | + github.com/pelletier/go-toml/v2 v2.1.1 // indirect |
38 | 40 | github.com/pkg/errors v0.9.1 // indirect
|
| 41 | + github.com/sagikazarmark/locafero v0.4.0 // indirect |
| 42 | + github.com/sagikazarmark/slog-shim v0.1.0 // indirect |
39 | 43 | github.com/sirupsen/logrus v1.9.3 // indirect
|
40 |
| - github.com/spf13/afero v1.10.0 // indirect |
41 |
| - github.com/spf13/cast v1.5.1 // indirect |
42 |
| - github.com/spf13/jwalterweatherman v1.1.0 // indirect |
| 44 | + github.com/sourcegraph/conc v0.3.0 // indirect |
| 45 | + github.com/spf13/afero v1.11.0 // indirect |
| 46 | + github.com/spf13/cast v1.6.0 // indirect |
43 | 47 | github.com/spf13/pflag v1.0.5 // indirect
|
44 | 48 | github.com/subosito/gotenv v1.6.0 // indirect
|
45 |
| - golang.org/x/mod v0.13.0 // indirect |
46 |
| - golang.org/x/net v0.15.0 // indirect |
47 |
| - golang.org/x/sys v0.13.0 // indirect |
48 |
| - golang.org/x/text v0.13.0 // indirect |
49 |
| - golang.org/x/tools v0.13.0 // indirect |
| 49 | + go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect |
| 50 | + go.opentelemetry.io/otel v1.19.0 // indirect |
| 51 | + go.opentelemetry.io/otel/metric v1.19.0 // indirect |
| 52 | + go.opentelemetry.io/otel/trace v1.19.0 // indirect |
| 53 | + go.uber.org/multierr v1.11.0 // indirect |
| 54 | + golang.org/x/exp v0.0.0-20240119083558-1b970713d09a // indirect |
| 55 | + golang.org/x/mod v0.14.0 // indirect |
| 56 | + golang.org/x/net v0.20.0 // indirect |
| 57 | + golang.org/x/sys v0.16.0 // indirect |
| 58 | + golang.org/x/text v0.14.0 // indirect |
| 59 | + golang.org/x/tools v0.17.0 // indirect |
50 | 60 | gopkg.in/ini.v1 v1.67.0 // indirect
|
51 | 61 | gopkg.in/yaml.v3 v3.0.1 // indirect
|
52 | 62 | gotest.tools/v3 v3.5.1 // indirect
|
|
0 commit comments