-
Notifications
You must be signed in to change notification settings - Fork 17
/
go.mod
56 lines (53 loc) · 2.31 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
module github.com/cloudfoundry-incubator/bosh-backup-and-restore
go 1.22.0
require (
github.com/cloudfoundry/bosh-cli/v7 v7.8.2
github.com/cloudfoundry/bosh-utils v0.0.500
github.com/cloudfoundry/socks5-proxy v0.2.130
github.com/cppforlife/go-patch v0.2.0
github.com/maxbrunsfeld/counterfeiter/v6 v6.9.0
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
github.com/onsi/ginkgo/v2 v2.21.0
github.com/onsi/gomega v1.35.1
github.com/pkg/errors v0.9.1
github.com/urfave/cli v1.22.16
golang.org/x/crypto v0.29.0
gopkg.in/yaml.v2 v2.4.0
)
require (
code.cloudfoundry.org/clock v1.20.0 // indirect
code.cloudfoundry.org/tlsconfig v0.8.0 // indirect
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/bmatcuk/doublestar v1.3.4 // indirect
github.com/charlievieth/fs v0.0.3 // indirect
github.com/cheggaaa/pb/v3 v3.1.5 // indirect
github.com/cloudfoundry/config-server v0.1.214 // indirect
github.com/cloudfoundry/go-socks5 v0.0.0-20240831012420-2590b55236ee // indirect
github.com/cppforlife/go-semi-semantic v0.0.0-20160921010311-576b6af77ae4 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/fatih/color v1.18.0 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/pprof v0.0.0-20241101162523-b92577c0c142 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/jpillora/backoff v1.0.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
github.com/pivotal-cf/paraphernalia v0.0.0-20180203224945-a64ae2051c20 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/vito/go-interact v1.0.1 // indirect
golang.org/x/mod v0.22.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/sync v0.9.0 // indirect
golang.org/x/sys v0.27.0 // indirect
golang.org/x/term v0.26.0 // indirect
golang.org/x/text v0.20.0 // indirect
golang.org/x/tools v0.26.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)