-
Notifications
You must be signed in to change notification settings - Fork 43
/
go.mod
43 lines (40 loc) · 1.64 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
module github.com/tinkerbell/actions
go 1.21
require (
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/containerd/containerd v1.4.4
github.com/deislabs/oras v0.11.1
github.com/diskfs/go-diskfs v1.4.1
github.com/dustin/go-humanize v1.0.1
github.com/klauspost/compress v1.17.9
github.com/lmittmann/tint v1.0.5
github.com/mattn/go-isatty v0.0.3
github.com/opencontainers/go-digest v1.0.0
github.com/peterbourgon/ff/v3 v3.4.0
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.9.4-0.20230606125235-dd1b4c2e81af
github.com/spf13/cobra v1.8.1
github.com/ulikunitz/xz v0.5.12
golang.org/x/sys v0.24.0
)
require (
github.com/Microsoft/go-winio v0.4.16 // indirect
github.com/Microsoft/hcsshim v0.8.14 // indirect
github.com/containerd/cgroups v0.0.0-20200531161412-0dbf7f05ba59 // indirect
github.com/djherbis/times v1.6.0 // indirect
github.com/elliotwutingfeng/asciiset v0.0.0-20230602022725-51bbb787efab // indirect
github.com/gogo/protobuf v1.3.1 // indirect
github.com/golang/protobuf v1.3.2 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/hashicorp/golang-lru v0.5.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/opencontainers/image-spec v1.0.1 // indirect
github.com/pierrec/lz4/v4 v4.1.17 // indirect
github.com/pkg/xattr v0.4.9 // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.opencensus.io v0.22.0 // indirect
golang.org/x/net v0.0.0-20191004110552-13f9640d40b9 // indirect
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a // indirect
google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a // indirect
google.golang.org/grpc v1.23.1 // indirect
)