-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgo.mod
69 lines (66 loc) · 2.94 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
module github.com/m-lab/etl
go 1.20
require (
cloud.google.com/go v0.102.0
cloud.google.com/go/bigquery v1.32.0
cloud.google.com/go/storage v1.22.1
github.com/fsouza/fake-gcs-server v1.23.1
github.com/go-test/deep v1.0.8
github.com/google/go-jsonnet v0.17.0
github.com/google/gopacket v1.1.19
github.com/googleapis/google-cloud-go-testing v0.0.0-20210719221736-1c9a4c676720
github.com/iancoleman/strcase v0.2.0
github.com/kr/pretty v0.3.0
github.com/m-lab/etl-gardener v0.0.0-20220706163049-f6a4eced2192
github.com/m-lab/go v0.1.72
github.com/m-lab/ndt-server v0.20.18
github.com/m-lab/tcp-info v1.5.3
github.com/m-lab/traceroute-caller v0.10.1
github.com/m-lab/uuid-annotator v0.4.7
github.com/prometheus/client_golang v1.13.0
github.com/prometheus/client_model v0.2.0
github.com/valyala/gozstd v1.13.0
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4
google.golang.org/api v0.84.0
gopkg.in/m-lab/pipe.v3 v3.0.0-20180108231244-604e84f43ee0
)
require (
cloud.google.com/go/compute v1.6.1 // indirect
cloud.google.com/go/datastore v1.6.0 // indirect
cloud.google.com/go/iam v0.3.0 // indirect
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa // indirect
github.com/googleapis/gax-go/v2 v2.4.0 // indirect
github.com/googleapis/go-type-adapters v1.0.0 // indirect
github.com/gorilla/handlers v1.5.1 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/m-lab/annotation-service v0.0.0-20210713124633-fa227b3d5b2f // indirect
github.com/m-lab/uuid v1.0.1 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/oschwald/geoip2-golang v1.7.0 // indirect
github.com/oschwald/maxminddb-golang v1.9.0 // indirect
github.com/prometheus/common v0.37.0 // indirect
github.com/prometheus/procfs v0.8.0 // indirect
github.com/rogpeppe/go-internal v1.6.1 // indirect
go.opencensus.io v0.23.0 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20220608133413-ed9918b62aac // indirect
google.golang.org/grpc v1.47.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20200605160147-a5ece683394c // indirect
)