-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
61 lines (58 loc) · 2.36 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
module github.com/wuxler/ruasec
go 1.22
require (
github.com/benbjohnson/clock v1.3.5
github.com/containerd/platforms v0.2.1
github.com/containers/libtrust v0.0.0-20230121012942-c1716e8a8d01
github.com/docker/docker v27.5.1+incompatible
github.com/dsnet/compress v0.0.2-0.20230904184137-39efe44ab707
github.com/klauspost/compress v1.17.11
github.com/klauspost/pgzip v1.2.6
github.com/manifoldco/promptui v0.9.0
github.com/maypok86/otter v1.2.4
github.com/opencontainers/go-digest v1.0.1-0.20231212064514-429d0316a3dd
github.com/opencontainers/image-spec v1.1.0
github.com/puzpuzpuz/xsync/v3 v3.5.1
github.com/samber/lo v1.49.1
github.com/smallnest/deepcopy v1.0.0
github.com/spf13/afero v1.12.0
github.com/spf13/cast v1.7.1
github.com/stretchr/testify v1.10.0
github.com/therootcompany/xz v1.0.1
github.com/ulikunitz/xz v0.5.12
github.com/urfave/cli/v3 v3.0.0-beta1
go.uber.org/mock v0.5.0
golang.org/x/sync v0.11.0
golang.org/x/sys v0.30.0
gopkg.in/natefinch/lumberjack.v2 v2.2.1
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/Microsoft/go-winio v0.4.14 // indirect
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
github.com/containerd/log v0.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/distribution/reference v0.6.0 // indirect
github.com/docker/go-connections v0.5.0 // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/dolthub/maphash v0.1.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/gammazero/deque v0.2.1 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/moby/docker-image-spec v1.3.1 // indirect
github.com/moby/term v0.5.0 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.57.0 // indirect
go.opentelemetry.io/otel v1.32.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.32.0 // indirect
go.opentelemetry.io/otel/metric v1.32.0 // indirect
go.opentelemetry.io/otel/sdk v1.32.0 // indirect
go.opentelemetry.io/otel/trace v1.32.0 // indirect
golang.org/x/text v0.21.0 // indirect
gotest.tools/v3 v3.5.1 // indirect
)