mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-22 20:06:07 +02:00
0a75c5bd8a
Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /bridge/opentracing/test Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /exporters/otlp/internal/retry Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /schema Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /exporters/otlp/otlpmetric/otlpmetrichttp Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /exporters/prometheus Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /metric Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /exporters/jaeger Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /exporters/otlp/otlpmetric/otlpmetricgrpc Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /exporters/zipkin Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /trace Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /exporters/otlp/otlpmetric Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /exporters/stdout/stdouttrace Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /exporters/otlp/otlptrace/otlptracegrpc Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /exporters/otlp/otlptrace Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /exporters/otlp/otlptrace/otlptracehttp Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /exporters/stdout/stdoutmetric Bump github.com/golangci/golangci-lint from 1.51.1 to 1.51.2 in /internal/tools Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /sdk/metric Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /bridge/opencensus Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /sdk Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 Bump golang.org/x/sys from 0.0.0-20220919091848-fb04ddd9f9c8 to 0.5.0 in /sdk Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 in /bridge/opentracing Bump lycheeverse/lychee-action from 1.5.4 to 1.6.1
36 lines
1.0 KiB
Modula-2
36 lines
1.0 KiB
Modula-2
module go.opentelemetry.io/otel/bridge/opencensus
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/stretchr/testify v1.8.2
|
|
go.opencensus.io v0.24.0
|
|
go.opentelemetry.io/otel v1.13.0
|
|
go.opentelemetry.io/otel/metric v0.36.0
|
|
go.opentelemetry.io/otel/sdk v1.13.0
|
|
go.opentelemetry.io/otel/sdk/metric v0.36.0
|
|
go.opentelemetry.io/otel/trace v1.13.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/go-logr/logr v1.2.3 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
|
|
github.com/kr/pretty v0.1.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
golang.org/x/sys v0.5.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
replace go.opentelemetry.io/otel => ../..
|
|
|
|
replace go.opentelemetry.io/otel/trace => ../../trace
|
|
|
|
replace go.opentelemetry.io/otel/sdk => ../../sdk
|
|
|
|
replace go.opentelemetry.io/otel/metric => ../../metric
|
|
|
|
replace go.opentelemetry.io/otel/sdk/metric => ../../sdk/metric
|