You've already forked opentelemetry-go
mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2026-06-03 18:35:08 +02:00
c047088605
Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 in /trace Bump google.golang.org/grpc from 1.58.2 to 1.58.3 in /exporters/otlp/otlpmetric/otlpmetrichttp Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 in /exporters/otlp/otlpmetric/otlpmetrichttp Bump google.golang.org/grpc from 1.58.2 to 1.58.3 in /example/otel-collector Bump google.golang.org/grpc from 1.58.2 to 1.58.3 in /exporters/otlp/otlptrace/otlptracegrpc Bump google.golang.org/grpc from 1.58.2 to 1.58.3 in /exporters/otlp/otlpmetric/otlpmetricgrpc Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 in /exporters/otlp/otlpmetric/otlpmetricgrpc Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 in /exporters/zipkin Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 in /exporters/otlp/otlptrace Bump google.golang.org/grpc from 1.58.2 to 1.58.3 in /bridge/opentracing/test Bump google.golang.org/grpc from 1.58.2 to 1.58.3 in /exporters/otlp/otlptrace/otlptracehttp Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 in /sdk
35 lines
1.0 KiB
Modula-2
35 lines
1.0 KiB
Modula-2
module go.opentelemetry.io/otel/exporters/otlp/otlptrace
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/google/go-cmp v0.6.0
|
|
github.com/stretchr/testify v1.8.4
|
|
go.opentelemetry.io/otel v1.19.0
|
|
go.opentelemetry.io/otel/sdk v1.19.0
|
|
go.opentelemetry.io/otel/trace v1.19.0
|
|
go.opentelemetry.io/proto/otlp v1.0.0
|
|
google.golang.org/protobuf v1.31.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/go-logr/logr v1.2.4 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rogpeppe/go-internal v1.10.0 // indirect
|
|
go.opentelemetry.io/otel/metric v1.19.0 // indirect
|
|
golang.org/x/sys v0.13.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
replace go.opentelemetry.io/otel => ../../..
|
|
|
|
replace go.opentelemetry.io/otel/sdk => ../../../sdk
|
|
|
|
replace go.opentelemetry.io/otel/trace => ../../../trace
|
|
|
|
replace go.opentelemetry.io/otel/metric => ../../../metric
|