-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathgo.mod
63 lines (60 loc) · 2.75 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
module github.com/pivotal-cf/on-demand-service-broker
go 1.23.0
require (
code.cloudfoundry.org/credhub-cli v0.0.0-20250106140724-966bccf2e72f
code.cloudfoundry.org/lager/v3 v3.22.0
github.com/blang/semver/v4 v4.0.0
github.com/cloudfoundry-community/go-uaa v0.3.3
github.com/cloudfoundry/bosh-cli/v7 v7.8.6
github.com/cloudfoundry/bosh-utils v0.0.519
github.com/craigfurman/herottp v0.0.0-20190418132442-c546d62f2a8d
github.com/gorilla/mux v1.8.1
github.com/maxbrunsfeld/counterfeiter/v6 v6.11.2
github.com/onsi/ginkgo/v2 v2.22.2
github.com/onsi/gomega v1.36.2
github.com/pborman/uuid v1.2.1
github.com/pivotal-cf/brokerapi/v12 v12.0.0
github.com/pivotal-cf/on-demand-services-sdk v0.47.1-0.20250106183339-8b996c5a7cfa
github.com/pkg/errors v0.9.1
github.com/urfave/negroni v1.0.0
github.com/xeipuuv/gojsonschema v1.2.0
gopkg.in/yaml.v2 v2.4.0
)
require (
code.cloudfoundry.org/tlsconfig v0.14.0 // indirect
github.com/bmatcuk/doublestar v1.3.4 // indirect
github.com/charlievieth/fs v0.0.3 // indirect
github.com/cloudfoundry/go-socks5 v0.0.0-20240831012420-2590b55236ee // indirect
github.com/cloudfoundry/socks5-proxy v0.2.137 // indirect
github.com/cppforlife/go-semi-semantic v0.0.0-20160921010311-576b6af77ae4 // indirect
github.com/fsnotify/fsnotify v1.8.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.23.0 // 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-20241210010833-40e02aabc2ad // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/go-version v1.7.0 // indirect
github.com/jpillora/backoff v1.0.0 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
github.com/nxadm/tail v1.4.11 // indirect
github.com/openzipkin/zipkin-go v0.4.3 // indirect
github.com/pivotal-cf/paraphernalia v0.0.0-20180203224945-a64ae2051c20 // indirect
github.com/rogpeppe/go-internal v1.13.1 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
golang.org/x/crypto v0.32.0 // indirect
golang.org/x/mod v0.22.0 // indirect
golang.org/x/net v0.34.0 // indirect
golang.org/x/oauth2 v0.24.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/tools v0.29.0 // indirect
google.golang.org/protobuf v1.36.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)