-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathgo.mod
77 lines (74 loc) · 3.29 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
module github.com/heroku/x
go 1.21
require (
contrib.go.opencensus.io/exporter/ocagent v0.6.0
github.com/armon/go-proxyproto v0.0.0-20190211145416-68259f75880e
github.com/aws/aws-lambda-go v1.27.0
github.com/aws/aws-sdk-go v1.34.0
github.com/axiomhq/hyperloglog v0.0.0-20180317131949-fe9507de0228
github.com/coreos/go-oidc/v3 v3.11.0
github.com/go-chi/chi v4.1.2+incompatible
github.com/go-kit/kit v0.9.0
github.com/golang-jwt/jwt/v4 v4.4.2
github.com/golang/protobuf v1.5.4
github.com/gomodule/redigo v1.8.9
github.com/google/gops v0.3.22
github.com/google/uuid v1.3.1
github.com/grpc-ecosystem/go-grpc-middleware v1.2.0
github.com/grpc-ecosystem/grpc-gateway v1.16.0
github.com/heroku/rollrus v0.2.0
github.com/hydrogen18/memlistener v0.0.0-20141126152155-54553eb933fb
github.com/joeshaw/envdecode v0.0.0-20180129163420-d5f34bca07f3
github.com/lstoll/grpce v1.7.0
github.com/oklog/run v1.0.0
github.com/pkg/errors v0.9.1
github.com/rafaeljusto/redigomock v0.0.0-20190202135759-257e089e14a1
github.com/sirupsen/logrus v1.6.0
github.com/soveran/redisurl v0.0.0-20180322091936-eb325bc7a4b8
github.com/spf13/cobra v0.0.2
github.com/unrolled/secure v1.0.1
github.com/urfave/cli v1.21.0
go.opencensus.io v0.22.1
go.opentelemetry.io/contrib/instrumentation/runtime v0.45.0
go.opentelemetry.io/otel v1.27.0
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.42.0
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.42.0
go.opentelemetry.io/otel/metric v1.27.0
go.opentelemetry.io/otel/sdk v1.27.0
go.opentelemetry.io/otel/sdk/metric v1.27.0
golang.org/x/crypto v0.25.0
golang.org/x/sync v0.7.0
golang.org/x/text v0.16.0
golang.org/x/time v0.0.0-20181108054448-85acf8d2951c
google.golang.org/grpc v1.59.0
google.golang.org/grpc/examples v0.0.0-20210916203835-567da6b86340
google.golang.org/protobuf v1.33.0
gopkg.in/go-jose/go-jose.v2 v2.6.3
)
require (
github.com/VividCortex/gohistogram v1.0.0 // indirect
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
github.com/dgryski/go-metro v0.0.0-20180109044635-280f6062b5bc // indirect
github.com/go-jose/go-jose/v4 v4.0.2 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jmespath/go-jmespath v0.3.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
github.com/rollbar/rollbar-go v1.2.0 // indirect
github.com/spf13/pflag v1.0.1 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0 // indirect
go.opentelemetry.io/otel/trace v1.27.0 // indirect
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/oauth2 v0.21.0 // indirect
golang.org/x/sys v0.22.0 // indirect
google.golang.org/api v0.7.0 // indirect
google.golang.org/genproto v0.0.0-20231012201019-e917dd12ba7a // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b // indirect
)