-
Notifications
You must be signed in to change notification settings - Fork 22
/
go.mod
40 lines (37 loc) · 1.52 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/cloudfoundry/firehose_exporter
go 1.22.4
require (
code.cloudfoundry.org/go-diodes v0.0.0-20230406180255-f141159491b0
code.cloudfoundry.org/go-loggregator/v8 v8.0.5
github.com/alecthomas/kingpin/v2 v2.4.0
github.com/cespare/xxhash/v2 v2.3.0
github.com/gogo/protobuf v1.3.2
github.com/iancoleman/strcase v0.3.0
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.36.1
github.com/prometheus/client_golang v1.20.5
github.com/prometheus/client_model v0.6.1
github.com/prometheus/common v0.61.0
github.com/sirupsen/logrus v1.9.3
golang.org/x/net v0.33.0
)
require (
code.cloudfoundry.org/tlsconfig v0.0.0-20230320190829-8f91c367795b // indirect
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/prometheus/procfs v0.15.1 // indirect
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
google.golang.org/grpc v1.56.3 // indirect
google.golang.org/protobuf v1.35.2 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)