-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Solve the goproto issue by updating simple/ (!) (#257)
- Loading branch information
Showing
3 changed files
with
80 additions
and
470 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,35 @@ | ||
module github.com/fortio/fortiotel/simple | ||
|
||
go 1.18 | ||
go 1.22 | ||
|
||
toolchain go1.22.7 | ||
|
||
require ( | ||
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.39.0 | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.39.0 | ||
go.opentelemetry.io/contrib/propagators/b3 v1.14.0 | ||
go.opentelemetry.io/otel v1.13.0 | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.13.0 | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.13.0 | ||
go.opentelemetry.io/otel/sdk v1.13.0 | ||
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.55.0 | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.55.0 | ||
go.opentelemetry.io/contrib/propagators/b3 v1.30.0 | ||
go.opentelemetry.io/otel v1.30.0 | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.30.0 | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.30.0 | ||
go.opentelemetry.io/otel/sdk v1.30.0 | ||
) | ||
|
||
require ( | ||
github.com/cenkalti/backoff/v4 v4.2.0 // indirect | ||
github.com/felixge/httpsnoop v1.0.3 // indirect | ||
github.com/go-logr/logr v1.2.3 // indirect | ||
github.com/cenkalti/backoff/v4 v4.3.0 // indirect | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.15.0 // indirect | ||
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.13.0 // indirect | ||
go.opentelemetry.io/otel/metric v0.36.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.13.0 // indirect | ||
go.opentelemetry.io/proto/otlp v0.19.0 // indirect | ||
golang.org/x/net v0.7.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230216225411-c8e22ba71e44 // indirect | ||
google.golang.org/grpc v1.53.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.30.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.30.0 // indirect | ||
go.opentelemetry.io/proto/otlp v1.3.1 // indirect | ||
golang.org/x/net v0.30.0 // indirect | ||
golang.org/x/sys v0.26.0 // indirect | ||
golang.org/x/text v0.19.0 // indirect | ||
google.golang.org/genproto v0.0.0-20240930140551-af27646dc61f // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240930140551-af27646dc61f // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240930140551-af27646dc61f // indirect | ||
google.golang.org/grpc v1.67.1 // indirect | ||
google.golang.org/protobuf v1.34.2 // indirect | ||
) |
Oops, something went wrong.