forked from go-graphite/carbonapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
76 lines (73 loc) · 3.14 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
module github.com/go-graphite/carbonapi
go 1.18
require (
github.com/JaderDias/movingmedian v0.0.0-20220813210630-d8c6b6de8835
github.com/alicebob/miniredis/v2 v2.22.0
github.com/ansel1/merry v1.6.2
github.com/ansel1/merry/v2 v2.0.2
github.com/barkimedes/go-deepcopy v0.0.0-20220514131651-17c30cfc62df
github.com/bradfitz/gomemcache v0.0.0-20221031212613-62deef7fc822
github.com/cactus/go-statsd-client/v5 v5.0.0
github.com/circonus-labs/gosnowth v1.11.3
github.com/dgryski/go-expirecache v0.0.0-20170314133854-743ef98b2adb
github.com/dgryski/go-onlinestats v0.0.0-20170612111826-1c7d19468768
github.com/dgryski/httputil v0.0.0-20160116060654-189c2918cd08
github.com/dustin/go-humanize v1.0.0
github.com/evmar/gocairo v0.0.0-20160222165215-ddd30f837497
github.com/go-graphite/protocol v1.0.0
github.com/golang/protobuf v1.5.2
github.com/gomodule/redigo v1.8.9
github.com/gorilla/handlers v1.5.1
github.com/lib/pq v1.10.7
github.com/lomik/og-rek v0.0.0-20170411191824-628eefeb8d80
github.com/lomik/zapwriter v0.0.0-20210624082824-c1161d1eb463
github.com/maruel/natural v1.1.0
github.com/mjibson/go-dsp v0.0.0-20180508042940-11479a337f12
github.com/msaf1980/go-metrics v0.0.14
github.com/msaf1980/go-stringutils v0.1.4
github.com/natefinch/atomic v1.0.1
github.com/rs/dnscache v0.0.0-20211102005908-e0241e321417
github.com/satori/go.uuid v1.2.0
github.com/spf13/viper v1.14.0
github.com/stretchr/testify v1.8.1
github.com/tebeka/strftime v0.1.5
github.com/tevino/abool v1.2.0
github.com/tinylib/msgp v1.1.6
github.com/valyala/fastjson v1.6.3
github.com/wangjohn/quickselect v0.0.0-20161129230411-ed8402a42d5f
go.uber.org/zap v1.24.0
golang.org/x/sys v0.3.0
gonum.org/v1/gonum v0.12.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/aclements/go-moremath v0.0.0-20210112150236-f10218a38794 // indirect
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/google/flatbuffers v22.11.23+incompatible // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/openhistogram/circonusllhist v0.3.0 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
github.com/philhofer/fwd v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/afero v1.9.3 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.4.1 // indirect
github.com/yuin/gopher-lua v0.0.0-20210529063254-f4c35e4016d9 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/text v0.5.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)