-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
25 lines (22 loc) · 801 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
module go-opentracing-example
go 1.19
require (
github.com/google/uuid v1.3.0
github.com/opentracing/opentracing-go v1.2.0
github.com/sirupsen/logrus v1.9.0
github.com/uber/jaeger-client-go v2.30.0+incompatible
google.golang.org/grpc v1.54.0
google.golang.org/protobuf v1.30.0
)
require (
github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
go.uber.org/atomic v1.10.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
)