-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgo.mod
42 lines (38 loc) · 1.35 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
module github.com/alphagov/paas-rds-broker
go 1.21
require (
github.com/Masterminds/semver v1.5.0
github.com/aws/aws-sdk-go v1.42.50
github.com/go-sql-driver/mysql v1.6.0
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/lib/pq v1.10.4
github.com/onsi/gomega v1.27.10
github.com/pborman/uuid v1.2.1 // indirect
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5
github.com/pkg/errors v0.9.1 // indirect
github.com/robfig/cron v1.2.0
github.com/satori/go.uuid v1.2.0
golang.org/x/net v0.15.0 // indirect
golang.org/x/sync v0.3.0
golang.org/x/sys v0.12.0 // indirect
golang.org/x/text v0.13.0 // indirect
)
require (
code.cloudfoundry.org/lager/v3 v3.0.2
github.com/onsi/ginkgo/v2 v2.12.0
github.com/pivotal-cf/brokerapi/v9 v9.0.0
)
require (
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-20210407192527-94a9f03dee38 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/openzipkin/zipkin-go v0.4.2 // indirect
golang.org/x/tools v0.12.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)