-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathgo.mod
34 lines (31 loc) · 1.28 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
module github.com/tomcz/s3backup/v2
go 1.23
require (
github.com/aws/aws-sdk-go v1.55.5
github.com/go-viper/mapstructure/v2 v2.2.1
github.com/hashicorp/vault-client-go v0.4.3
github.com/johannesboyne/gofakes3 v0.0.0-20241026070602-0da3aa9c32ca
github.com/matryer/moq v0.5.1
github.com/urfave/cli/v2 v2.27.5
gotest.tools/v3 v3.5.1
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/ryanuber/go-glob v1.0.0 // indirect
github.com/ryszard/goskiplist v0.0.0-20150312221310-2dfbae5fcf46 // indirect
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
go.shabbyrobe.org/gocovmerge v0.0.0-20230507111327-fa4f82cfbf4d // indirect
golang.org/x/mod v0.20.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/time v0.8.0 // indirect
golang.org/x/tools v0.24.0 // indirect
)