Skip to content

Commit

Permalink
stackdriver: fix CI (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
djc authored May 24, 2024
1 parent 9c2c0c2 commit d3b9a6e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 3 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ members = [
exclude = [
"opentelemetry-dynatrace",
"opentelemetry-datadog",
"opentelemetry-stackdriver",
"opentelemetry-zpages"
]
resolver = "2"
Expand Down
4 changes: 2 additions & 2 deletions opentelemetry-stackdriver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "opentelemetry-stackdriver"
version = "0.19.1"
version = "0.20.0"
description = "A Rust opentelemetry exporter that uploads traces to Google Stackdriver trace."
documentation = "https://docs.rs/opentelemetry-stackdriver/"
repository = "https://github.com/open-telemetry/opentelemetry-rust-contrib"
Expand All @@ -23,7 +23,7 @@ prost = "0.12"
prost-types = "0.12"
thiserror = "1.0.30"
tonic = { version = "0.11", features = ["gzip", "tls", "transport"] }
yup-oauth2 = { version = "8.3.3", optional = true }
yup-oauth2 = { version = "9", optional = true }
once_cell = { version = "1.19", optional = true }

# Futures
Expand Down
1 change: 1 addition & 0 deletions opentelemetry-stackdriver/src/proto/api.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// This file is @generated by prost-build.
/// Defines the HTTP configuration for an API service. It contains a list of
/// [HttpRule][google.api.HttpRule], each specifying the mapping of an RPC method
/// to one or more HTTP REST API methods.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// This file is @generated by prost-build.
/// A span represents a single operation within a trace. Spans can be
/// nested to form a trace tree. Often, a trace contains a root span
/// that describes the end-to-end latency, and one or more subspans for
Expand Down
1 change: 1 addition & 0 deletions opentelemetry-stackdriver/src/proto/logging/type.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// This file is @generated by prost-build.
/// A common proto for logging HTTP requests. Only contains semantics
/// defined by the HTTP specification. Product-specific logging
/// information MUST be defined in a separate message.
Expand Down
1 change: 1 addition & 0 deletions opentelemetry-stackdriver/src/proto/logging/v2.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// This file is @generated by prost-build.
/// An individual entry in a log.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
Expand Down
1 change: 1 addition & 0 deletions opentelemetry-stackdriver/src/proto/rpc.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// This file is @generated by prost-build.
/// The `Status` type defines a logical error model that is suitable for
/// different programming environments, including REST APIs and RPC APIs. It is
/// used by [gRPC](<https://github.com/grpc>). Each `Status` message contains
Expand Down

0 comments on commit d3b9a6e

Please sign in to comment.