-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathgo.mod
More file actions
27 lines (24 loc) · 815 Bytes
/
go.mod
File metadata and controls
27 lines (24 loc) · 815 Bytes
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
module github.com/screwdriver-cd/store-cli
go 1.25
require (
github.com/hashicorp/go-retryablehttp v0.7.8
github.com/karrick/godirwalk v1.17.0
github.com/klauspost/compress v1.18.1
github.com/otiai10/copy v1.14.1
github.com/urfave/cli v1.22.17
go.uber.org/multierr v1.11.0
go.uber.org/zap v1.27.0
golang.org/x/sys v0.38.0
gotest.tools v2.2.0+incompatible
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/otiai10/mint v1.6.3 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
golang.org/x/sync v0.18.0 // indirect
)