forked from sipcapture/heplify-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
53 lines (50 loc) · 2.05 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
module github.com/VoIPGRID/heplify-server
go 1.23
require (
github.com/VictoriaMetrics/fastcache v1.5.7
github.com/antonmedv/expr v1.8.8
github.com/buger/jsonparser v1.0.0
github.com/cespare/xxhash/v2 v2.1.1
github.com/go-sql-driver/mysql v1.5.0
github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee // indirect
github.com/gobwas/pool v0.2.0 // indirect
github.com/gobwas/ws v1.0.3
github.com/gogo/protobuf v1.3.1
github.com/golang/snappy v0.0.1
github.com/lib/pq v1.7.0
github.com/mailru/easyjson v0.7.1 // indirect
github.com/negbie/cert v0.0.0-20190324145947-d1018a8fb00f
github.com/negbie/logp v0.0.0-20190313141056-04cebff7f846
github.com/negbie/multiconfig v1.0.0
github.com/olivere/elastic v6.2.33+incompatible
github.com/pelletier/go-toml v1.8.0
github.com/pkg/errors v0.9.1 // indirect
github.com/prometheus/client_golang v1.7.0
github.com/prometheus/common v0.10.0
github.com/robfig/cron/v3 v3.0.1
github.com/sipcapture/golua v0.0.0-20200610090950-538d24098d76
github.com/stretchr/testify v1.5.1
github.com/valyala/bytebufferpool v1.0.0
github.com/valyala/fasttemplate v1.1.1
golang.org/x/net v0.0.0-20200602114024-627f9648deb9 // indirect
golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a
golang.org/x/text v0.3.3 // indirect
google.golang.org/genproto v0.0.0-20200619004808-3e7fca5c55db // indirect
google.golang.org/grpc v1.29.1
)
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/camelcase v1.0.0 // indirect
github.com/fatih/structs v1.1.0 // indirect
github.com/fortytw2/leaktest v1.3.0 // indirect
github.com/golang/protobuf v1.4.2 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/procfs v0.1.3 // indirect
golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1 // indirect
google.golang.org/protobuf v1.24.0 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
)