forked from pivotal-cf/cf-redis-broker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
40 lines (37 loc) · 1.56 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
module github.com/pivotal-cf/cf-redis-broker
go 1.21
require (
code.cloudfoundry.org/lager/v3 v3.0.1
github.com/BooleanCat/igo v1.3.0
github.com/cloudfoundry-incubator/candiedyaml v0.0.0-20170901234223-a41693b7b7af
github.com/cloudfoundry/gosigar v1.3.17
github.com/goamz/goamz v0.0.0-20180131231218-8b901b531db8
github.com/gomodule/redigo v2.0.0+incompatible
github.com/mitchellh/goamz v0.0.0-20150317174335-caaaea8b30ee
github.com/onsi/ginkgo/v2 v2.9.7
github.com/onsi/gomega v1.27.8
github.com/pborman/uuid v1.2.1
github.com/pivotal-cf/brokerapi/v10 v10.0.0
github.com/pivotal-cf/redisutils v0.0.0-20230714164608-0c46711fcf34
github.com/st3v/glager v0.3.0
)
require (
code.cloudfoundry.org/lager v2.0.0+incompatible // indirect
github.com/go-chi/chi/v5 v5.0.8 // indirect
github.com/go-logr/logr v1.2.4 // indirect
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/motain/gocheck v0.0.0-20131023154940-9beb271d26e6 // indirect
github.com/openzipkin/zipkin-go v0.4.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/stretchr/testify v1.8.0 // indirect
github.com/vaughan0/go-ini v0.0.0-20130923145212-a98ad7ee00ec // indirect
golang.org/x/net v0.12.0 // indirect
golang.org/x/sys v0.10.0 // indirect
golang.org/x/text v0.11.0 // indirect
golang.org/x/tools v0.11.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)