-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
28 lines (25 loc) · 884 Bytes
/
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
module github.com/status-im/telemetry
go 1.20
require (
github.com/go-auxiliaries/shrinking-map v0.3.0
github.com/golang-migrate/migrate/v4 v4.15.2
github.com/gorilla/handlers v1.5.2
github.com/gorilla/mux v1.8.0
github.com/lib/pq v1.10.3
github.com/robfig/cron/v3 v3.0.1
github.com/stretchr/testify v1.8.1
go.uber.org/zap v1.27.0
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/go-bindata/go-bindata v3.1.2+incompatible // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rs/cors v1.11.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.10.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)