-
Notifications
You must be signed in to change notification settings - Fork 17
/
go.mod
65 lines (62 loc) · 2.97 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
62
63
64
65
module github.com/bosh-io/web
go 1.22.0
require (
github.com/bosh-dep-forks/bosh-provisioner v0.0.0-20241217205932-40fb8b191414
github.com/cloudfoundry-incubator/candiedyaml v0.0.0-20170901234223-a41693b7b7af
github.com/cloudfoundry/bosh-utils v0.0.518
github.com/cppforlife/go-semi-semantic v0.0.0-20160921010311-576b6af77ae4
github.com/dpb587/metalink v0.5.0
github.com/dustin/go-humanize v1.0.1
github.com/go-martini/martini v0.0.0-20170121215854-22fa46961aab
github.com/martini-contrib/render v0.0.0-20150707142108-ec18f8345a11
github.com/microcosm-cc/bluemonday v1.0.27
github.com/onsi/ginkgo/v2 v2.22.1
github.com/onsi/gomega v1.36.1
github.com/russross/blackfriday v1.6.0
golang.org/x/lint v0.0.0-20241112194109-818c5a804067
gopkg.in/yaml.v2 v2.4.0
)
require (
code.cloudfoundry.org/clock v1.26.0 // indirect
code.cloudfoundry.org/tlsconfig v0.14.0 // indirect
github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c // indirect
github.com/aymerick/douceur v0.2.0 // indirect
github.com/bmatcuk/doublestar v1.3.4 // indirect
github.com/charlievieth/fs v0.0.3 // indirect
github.com/cloudfoundry/bosh-agent/v2 v2.714.0 // indirect
github.com/cloudfoundry/go-socks5 v0.0.0-20240831012420-2590b55236ee // indirect
github.com/cloudfoundry/gosigar v1.3.82 // indirect
github.com/cloudfoundry/socks5-proxy v0.2.136 // indirect
github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0 // indirect
github.com/containerd/cgroups v1.1.0 // indirect
github.com/coreos/go-iptables v0.8.0 // indirect
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
github.com/gorilla/css v1.0.1 // indirect
github.com/jpillora/backoff v1.0.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
github.com/opencontainers/runtime-spec v1.2.0 // indirect
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c // indirect
github.com/pivotal-cf/paraphernalia v0.0.0-20180203224945-a64ae2051c20 // indirect
github.com/pivotal/go-smtpd v0.0.0-20140108210614-0af6982457e5 // indirect
github.com/pkg/errors v0.9.1 // indirect
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/exp/typeparams v0.0.0-20241217172543-b2144cdd0a67 // indirect
golang.org/x/mod v0.22.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/tools v0.28.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
honnef.co/go/tools v0.5.0-0.dev // indirect
inet.af/wf v0.0.0-20221017222439-36129f591884 // indirect
)