38 lines
1.3 KiB
Modula-2
38 lines
1.3 KiB
Modula-2
module go.opentelemetry.io/collector
|
|
|
|
// NOTE:
|
|
// This go.mod is NOT used to build any official binary.
|
|
// To see the builder manifests used for official binaries,
|
|
// check https://github.com/open-telemetry/opentelemetry-collector-releases
|
|
//
|
|
// For the OpenTelemetry Collector Core distribution specifically, see
|
|
// https://github.com/open-telemetry/opentelemetry-collector-releases/tree/main/distributions/otelcol
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
github.com/stretchr/testify v1.10.0
|
|
go.uber.org/goleak v1.3.0
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a
|
|
google.golang.org/grpc v1.72.1
|
|
google.golang.org/protobuf v1.36.6
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rogpeppe/go-internal v1.12.0 // indirect
|
|
golang.org/x/sys v0.30.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
retract (
|
|
v0.76.0 // Depends on retracted pdata v1.0.0-rc10 module, use v0.76.1
|
|
v0.69.0 // Release failed, use v0.69.1
|
|
v0.57.1 // Release failed, use v0.57.2
|
|
v0.57.0 // Release failed, use v0.57.2
|
|
v0.32.0 // Contains incomplete metrics transition to proto 0.9.0, random components are not working.
|
|
)
|