forked from google/exposure-notifications-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
80 lines (78 loc) · 3.51 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
77
78
79
80
module github.com/google/exposure-notifications-server
go 1.16
require (
cloud.google.com/go v0.87.0
cloud.google.com/go/storage v1.16.0
contrib.go.opencensus.io/exporter/ocagent v0.7.0
contrib.go.opencensus.io/exporter/prometheus v0.3.0
contrib.go.opencensus.io/exporter/stackdriver v0.13.8
contrib.go.opencensus.io/integrations/ocsql v0.1.7
github.com/Azure/azure-sdk-for-go v55.7.0+incompatible
github.com/Azure/azure-storage-blob-go v0.14.0
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
github.com/Azure/go-autorest/autorest v0.11.19
github.com/Azure/go-autorest/autorest/adal v0.9.14
github.com/Azure/go-autorest/autorest/azure/auth v0.5.8 // indirect
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
github.com/Microsoft/go-winio v0.5.0 // indirect
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
github.com/aws/aws-sdk-go v1.40.2
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
github.com/client9/misspell v0.3.4
github.com/containerd/continuity v0.1.0 // indirect
github.com/fatih/color v1.9.0 // indirect
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect
github.com/gin-gonic/gin v1.7.2
github.com/go-playground/validator/v10 v10.7.0 // indirect
github.com/golang-jwt/jwt v3.2.1+incompatible
github.com/golang-migrate/migrate/v4 v4.14.1
github.com/golang/protobuf v1.5.2
github.com/golang/snappy v0.0.4 // indirect
github.com/google/go-cmp v0.5.6
github.com/google/uuid v1.3.0
github.com/gorilla/mux v1.8.0
github.com/gotestyourself/gotestyourself v2.2.0+incompatible // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-multierror v1.1.1
github.com/hashicorp/go-retryablehttp v0.7.0 // indirect
github.com/hashicorp/vault/api v1.1.1
github.com/jackc/pgx/v4 v4.12.0
github.com/kelseyhightower/run v0.0.17
github.com/leodido/go-urn v1.2.1 // indirect
github.com/lstoll/awskms v0.0.0-20210310122415-d1696e9c112b
github.com/mattn/go-isatty v0.0.13 // indirect
github.com/mikehelmick/go-chaff v0.5.0
github.com/mitchellh/mapstructure v1.4.1
github.com/opencontainers/runc v1.0.1 // indirect
github.com/ory/dockertest v3.3.5+incompatible
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
github.com/prometheus/common v0.29.0 // indirect
github.com/prometheus/procfs v0.7.0 // indirect
github.com/prometheus/statsd_exporter v0.21.0 // indirect
github.com/rakutentech/jwk-go v1.0.1
github.com/sethvargo/go-envconfig v0.3.5
github.com/sethvargo/go-gcpkms v0.1.0
github.com/sethvargo/go-retry v0.1.0
github.com/sethvargo/zapw v0.1.0
github.com/timakin/bodyclose v0.0.0-20200424151742-cb6215831a94
github.com/ugorji/go v1.2.6 // indirect
go.opencensus.io v0.23.0
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.7.0 // indirect
go.uber.org/zap v1.18.1
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
golang.org/x/net v0.0.0-20210716203947-853a461950ff // indirect
golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
golang.org/x/time v0.0.0-20210611083556-38a9dc6acbc6
golang.org/x/tools v0.1.5
google.golang.org/api v0.50.0
google.golang.org/genproto v0.0.0-20210719143636-1d5a45f8e492
google.golang.org/grpc v1.39.0
google.golang.org/protobuf v1.27.1
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
honnef.co/go/tools v0.2.0
)