-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
27 lines (24 loc) · 890 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
module github.com/e-conomic/ctxtrace
go 1.20
require (
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0
github.com/openzipkin/zipkin-go v0.2.0
github.com/stretchr/testify v1.8.4
go.opentelemetry.io/otel/trace v1.21.0
go.uber.org/zap v1.10.0
google.golang.org/grpc v1.27.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/protobuf v1.3.2 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.opentelemetry.io/otel v1.21.0 // indirect
go.uber.org/atomic v1.4.0 // indirect
go.uber.org/multierr v1.1.0 // indirect
golang.org/x/net v0.0.0-20190311183353-d8887717615a // indirect
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a // indirect
golang.org/x/text v0.3.0 // indirect
google.golang.org/genproto v0.0.0-20191009194640-548a555dbc03 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)