-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathgo.mod
More file actions
73 lines (68 loc) · 3.03 KB
/
Copy pathgo.mod
File metadata and controls
73 lines (68 loc) · 3.03 KB
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
66
67
68
69
70
71
72
73
module code.cloudfoundry.org/routing-api
go 1.26.4
// pin ifrit until https://github.com/tedsuo/ifrit/pull/48 is merged
replace github.com/tedsuo/ifrit => github.com/tedsuo/ifrit v0.0.0-20260418191334-846868129986
replace github.com/cactus/go-statsd-client => github.com/cactus/go-statsd-client v2.0.2-0.20150911070441-6fa055a7b594+incompatible
require (
code.cloudfoundry.org/cfhttp/v2 v2.92.0
code.cloudfoundry.org/clock v1.85.0
code.cloudfoundry.org/debugserver v0.112.0
code.cloudfoundry.org/diego-logging-client v0.122.0
code.cloudfoundry.org/eventhub v0.87.0
code.cloudfoundry.org/go-loggregator/v9 v9.2.1
code.cloudfoundry.org/lager/v3 v3.84.0
code.cloudfoundry.org/locket v1.10.0
code.cloudfoundry.org/tlsconfig v0.65.0
github.com/cactus/go-statsd-client v3.2.1+incompatible
github.com/cloudfoundry-community/go-uaa v0.5.0
github.com/cloudfoundry/dropsonde v1.1.0
github.com/go-sql-driver/mysql v1.10.0
github.com/golang-jwt/jwt/v4 v4.5.2
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d
github.com/onsi/ginkgo/v2 v2.32.1
github.com/onsi/gomega v1.43.0
github.com/tedsuo/ifrit v0.0.0-20260813155221-94822c932811
github.com/tedsuo/rata v1.0.0
github.com/vito/go-sse v1.1.3
golang.org/x/oauth2 v0.36.0
google.golang.org/grpc v1.83.2
gopkg.in/yaml.v3 v3.0.1
gorm.io/driver/mysql v1.6.0
gorm.io/driver/postgres v1.6.2
gorm.io/gorm v1.31.2
)
require (
code.cloudfoundry.org/diego-db-helpers v0.12.0 // indirect
code.cloudfoundry.org/durationjson v0.87.0 // indirect
code.cloudfoundry.org/go-diodes v0.0.0-20260818081020-5f89c9327272 // indirect
filippo.io/edwards25519 v1.2.0 // indirect
github.com/Masterminds/semver/v3 v3.5.0 // indirect
github.com/bmizerany/pat v0.0.0-20210406213842-e4b6760bdd6f // indirect
github.com/cloudfoundry/sonde-go v0.0.0-20260818080958-d46298cd8513 // indirect
github.com/fsnotify/fsnotify v1.10.1 // indirect
github.com/go-logr/logr v1.4.4 // indirect
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/google/go-cmp v0.7.0 // indirect
github.com/google/pprof v0.0.0-20260825171938-4d453200e7d9 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/pgx/v5 v5.10.0 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/openzipkin/zipkin-go v0.4.3 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/square/certstrap v1.3.0 // indirect
go.step.sm/crypto v0.89.0 // indirect
go.yaml.in/yaml/v3 v3.0.5 // indirect
golang.org/x/crypto v0.55.0 // indirect
golang.org/x/mod v0.40.0 // indirect
golang.org/x/net v0.58.0 // indirect
golang.org/x/sync v0.22.0 // indirect
golang.org/x/sys v0.47.0 // indirect
golang.org/x/text v0.41.0 // indirect
golang.org/x/tools v0.49.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20260825221802-da73d73af1c5 // indirect
google.golang.org/protobuf v1.36.12 // indirect
)