-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
28 lines (24 loc) · 877 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/hasfjord/timeseries
go 1.19
require (
github.com/influxdata/influxdb-client-go/v2 v2.10.0
google.golang.org/grpc v1.49.0
google.golang.org/protobuf v1.28.1
)
require (
github.com/golang/protobuf v1.5.2 // indirect
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
golang.org/x/text v0.3.5 // indirect
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
)
require (
github.com/deepmap/oapi-codegen v1.8.2 // indirect
github.com/google/uuid v1.3.0
github.com/influxdata/line-protocol v0.0.0-20200327222509-2487e7298839 // indirect
github.com/kelseyhightower/envconfig v1.4.0
github.com/pkg/errors v0.9.1 // indirect
github.com/sirupsen/logrus v1.9.0
golang.org/x/net v0.0.0-20210119194325-5f4716e94777 // indirect
golang.org/x/sync v0.0.0-20220907140024-f12130a52804
gopkg.in/yaml.v2 v2.3.0 // indirect
)