forked from bookingcom/carbonapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
60 lines (57 loc) · 2.74 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
module github.com/bookingcom/carbonapi
go 1.20
require (
github.com/JaderDias/movingmedian v0.0.0-20220813210630-d8c6b6de8835
github.com/bradfitz/gomemcache v0.0.0-20230124162541-5f7a7d875746
github.com/davecgh/go-spew v1.1.1
github.com/dgryski/go-expirecache v0.0.0-20170314133854-743ef98b2adb
github.com/dgryski/go-onlinestats v0.0.0-20170612111826-1c7d19468768
github.com/dustin/go-humanize v1.0.1
github.com/evmar/gocairo v0.0.0-20160222165215-ddd30f837497
github.com/facebookgo/grace v0.0.0-20180706040059-75cf19382434
github.com/facebookgo/pidfile v0.0.0-20150612191647-f242e2999868
github.com/go-graphite/protocol v1.0.1-0.20220718132526-4b842ba389ee
github.com/google/go-cmp v0.5.9
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.8.0
github.com/lomik/og-rek v0.0.0-20170411191824-628eefeb8d80
github.com/mjibson/go-dsp v0.0.0-20180508042940-11479a337f12
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.15.1
github.com/satori/go.uuid v1.2.0
github.com/tebeka/strftime v0.1.5
github.com/wangjohn/quickselect v0.0.0-20161129230411-ed8402a42d5f
go.opentelemetry.io/contrib/instrumentation/gorilla/mux v0.7.0
go.uber.org/zap v1.24.0
gonum.org/v1/gonum v0.13.0
google.golang.org/grpc v1.55.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/aclements/go-moremath v0.0.0-20210112150236-f10218a38794 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5 // indirect
github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect
github.com/facebookgo/ensure v0.0.0-20200202191622-63f1cf65ac4c // indirect
github.com/facebookgo/freeport v0.0.0-20150612182905-d4adf43b75b9 // indirect
github.com/facebookgo/httpdown v0.0.0-20180706035922-5979d39b15c2 // indirect
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect
github.com/facebookgo/stats v0.0.0-20151006221625-1b76add642e4 // indirect
github.com/facebookgo/subset v0.0.0-20200203212716-c811ad88dec4 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/prometheus/client_model v0.4.0 // indirect
github.com/prometheus/common v0.43.0 // indirect
github.com/prometheus/procfs v0.9.0 // indirect
go.opentelemetry.io/otel v0.8.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
google.golang.org/protobuf v1.30.0 // indirect
)