From 17c136472a333e788a1159059b130b82e0b5c9df Mon Sep 17 00:00:00 2001 From: Utkarsh Umesan Pillai <66651184+utpilla@users.noreply.github.com> Date: Mon, 23 Sep 2024 23:07:51 +0000 Subject: [PATCH 1/9] Fix CI --- opentelemetry-proto/Cargo.toml | 2 +- opentelemetry-proto/README.md | 2 +- .../tonic/opentelemetry.proto.logs.v1.rs | 54 +++++++++---------- .../tonic/opentelemetry.proto.metrics.v1.rs | 12 ++--- .../tonic/opentelemetry.proto.trace.v1.rs | 26 ++++----- 5 files changed, 47 insertions(+), 49 deletions(-) diff --git a/opentelemetry-proto/Cargo.toml b/opentelemetry-proto/Cargo.toml index 7c4a5f7a19..66593f2a22 100644 --- a/opentelemetry-proto/Cargo.toml +++ b/opentelemetry-proto/Cargo.toml @@ -13,7 +13,7 @@ categories = [ keywords = ["opentelemetry", "otlp", "logging", "tracing", "metrics"] license = "Apache-2.0" edition = "2021" -rust-version = "1.70" +rust-version = "1.71.1" autotests = false [lib] diff --git a/opentelemetry-proto/README.md b/opentelemetry-proto/README.md index e655fbeacd..6e0a920048 100644 --- a/opentelemetry-proto/README.md +++ b/opentelemetry-proto/README.md @@ -7,4 +7,4 @@ This crate contains generated files from [opentelemetry-proto](https://github.co repository and transformation between types from generated files and types defined in [opentelemetry](https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry). -*Compiler support: [requires `rustc` 1.70+] \ No newline at end of file +*Compiler support: [requires `rustc` 1.71.1+] \ No newline at end of file diff --git a/opentelemetry-proto/src/proto/tonic/opentelemetry.proto.logs.v1.rs b/opentelemetry-proto/src/proto/tonic/opentelemetry.proto.logs.v1.rs index e05763747d..28e5fc997d 100644 --- a/opentelemetry-proto/src/proto/tonic/opentelemetry.proto.logs.v1.rs +++ b/opentelemetry-proto/src/proto/tonic/opentelemetry.proto.logs.v1.rs @@ -227,31 +227,31 @@ impl SeverityNumber { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - SeverityNumber::Unspecified => "SEVERITY_NUMBER_UNSPECIFIED", - SeverityNumber::Trace => "SEVERITY_NUMBER_TRACE", - SeverityNumber::Trace2 => "SEVERITY_NUMBER_TRACE2", - SeverityNumber::Trace3 => "SEVERITY_NUMBER_TRACE3", - SeverityNumber::Trace4 => "SEVERITY_NUMBER_TRACE4", - SeverityNumber::Debug => "SEVERITY_NUMBER_DEBUG", - SeverityNumber::Debug2 => "SEVERITY_NUMBER_DEBUG2", - SeverityNumber::Debug3 => "SEVERITY_NUMBER_DEBUG3", - SeverityNumber::Debug4 => "SEVERITY_NUMBER_DEBUG4", - SeverityNumber::Info => "SEVERITY_NUMBER_INFO", - SeverityNumber::Info2 => "SEVERITY_NUMBER_INFO2", - SeverityNumber::Info3 => "SEVERITY_NUMBER_INFO3", - SeverityNumber::Info4 => "SEVERITY_NUMBER_INFO4", - SeverityNumber::Warn => "SEVERITY_NUMBER_WARN", - SeverityNumber::Warn2 => "SEVERITY_NUMBER_WARN2", - SeverityNumber::Warn3 => "SEVERITY_NUMBER_WARN3", - SeverityNumber::Warn4 => "SEVERITY_NUMBER_WARN4", - SeverityNumber::Error => "SEVERITY_NUMBER_ERROR", - SeverityNumber::Error2 => "SEVERITY_NUMBER_ERROR2", - SeverityNumber::Error3 => "SEVERITY_NUMBER_ERROR3", - SeverityNumber::Error4 => "SEVERITY_NUMBER_ERROR4", - SeverityNumber::Fatal => "SEVERITY_NUMBER_FATAL", - SeverityNumber::Fatal2 => "SEVERITY_NUMBER_FATAL2", - SeverityNumber::Fatal3 => "SEVERITY_NUMBER_FATAL3", - SeverityNumber::Fatal4 => "SEVERITY_NUMBER_FATAL4", + Self::Unspecified => "SEVERITY_NUMBER_UNSPECIFIED", + Self::Trace => "SEVERITY_NUMBER_TRACE", + Self::Trace2 => "SEVERITY_NUMBER_TRACE2", + Self::Trace3 => "SEVERITY_NUMBER_TRACE3", + Self::Trace4 => "SEVERITY_NUMBER_TRACE4", + Self::Debug => "SEVERITY_NUMBER_DEBUG", + Self::Debug2 => "SEVERITY_NUMBER_DEBUG2", + Self::Debug3 => "SEVERITY_NUMBER_DEBUG3", + Self::Debug4 => "SEVERITY_NUMBER_DEBUG4", + Self::Info => "SEVERITY_NUMBER_INFO", + Self::Info2 => "SEVERITY_NUMBER_INFO2", + Self::Info3 => "SEVERITY_NUMBER_INFO3", + Self::Info4 => "SEVERITY_NUMBER_INFO4", + Self::Warn => "SEVERITY_NUMBER_WARN", + Self::Warn2 => "SEVERITY_NUMBER_WARN2", + Self::Warn3 => "SEVERITY_NUMBER_WARN3", + Self::Warn4 => "SEVERITY_NUMBER_WARN4", + Self::Error => "SEVERITY_NUMBER_ERROR", + Self::Error2 => "SEVERITY_NUMBER_ERROR2", + Self::Error3 => "SEVERITY_NUMBER_ERROR3", + Self::Error4 => "SEVERITY_NUMBER_ERROR4", + Self::Fatal => "SEVERITY_NUMBER_FATAL", + Self::Fatal2 => "SEVERITY_NUMBER_FATAL2", + Self::Fatal3 => "SEVERITY_NUMBER_FATAL3", + Self::Fatal4 => "SEVERITY_NUMBER_FATAL4", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -313,8 +313,8 @@ impl LogRecordFlags { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - LogRecordFlags::DoNotUse => "LOG_RECORD_FLAGS_DO_NOT_USE", - LogRecordFlags::TraceFlagsMask => "LOG_RECORD_FLAGS_TRACE_FLAGS_MASK", + Self::DoNotUse => "LOG_RECORD_FLAGS_DO_NOT_USE", + Self::TraceFlagsMask => "LOG_RECORD_FLAGS_TRACE_FLAGS_MASK", } } /// Creates an enum from field names used in the ProtoBuf definition. diff --git a/opentelemetry-proto/src/proto/tonic/opentelemetry.proto.metrics.v1.rs b/opentelemetry-proto/src/proto/tonic/opentelemetry.proto.metrics.v1.rs index 54d6c69856..0c2200ae41 100644 --- a/opentelemetry-proto/src/proto/tonic/opentelemetry.proto.metrics.v1.rs +++ b/opentelemetry-proto/src/proto/tonic/opentelemetry.proto.metrics.v1.rs @@ -808,9 +808,9 @@ impl AggregationTemporality { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - AggregationTemporality::Unspecified => "AGGREGATION_TEMPORALITY_UNSPECIFIED", - AggregationTemporality::Delta => "AGGREGATION_TEMPORALITY_DELTA", - AggregationTemporality::Cumulative => "AGGREGATION_TEMPORALITY_CUMULATIVE", + Self::Unspecified => "AGGREGATION_TEMPORALITY_UNSPECIFIED", + Self::Delta => "AGGREGATION_TEMPORALITY_DELTA", + Self::Cumulative => "AGGREGATION_TEMPORALITY_CUMULATIVE", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -851,10 +851,8 @@ impl DataPointFlags { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - DataPointFlags::DoNotUse => "DATA_POINT_FLAGS_DO_NOT_USE", - DataPointFlags::NoRecordedValueMask => { - "DATA_POINT_FLAGS_NO_RECORDED_VALUE_MASK" - } + Self::DoNotUse => "DATA_POINT_FLAGS_DO_NOT_USE", + Self::NoRecordedValueMask => "DATA_POINT_FLAGS_NO_RECORDED_VALUE_MASK", } } /// Creates an enum from field names used in the ProtoBuf definition. diff --git a/opentelemetry-proto/src/proto/tonic/opentelemetry.proto.trace.v1.rs b/opentelemetry-proto/src/proto/tonic/opentelemetry.proto.trace.v1.rs index 675fee275c..d51a470d13 100644 --- a/opentelemetry-proto/src/proto/tonic/opentelemetry.proto.trace.v1.rs +++ b/opentelemetry-proto/src/proto/tonic/opentelemetry.proto.trace.v1.rs @@ -378,12 +378,12 @@ pub mod span { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - SpanKind::Unspecified => "SPAN_KIND_UNSPECIFIED", - SpanKind::Internal => "SPAN_KIND_INTERNAL", - SpanKind::Server => "SPAN_KIND_SERVER", - SpanKind::Client => "SPAN_KIND_CLIENT", - SpanKind::Producer => "SPAN_KIND_PRODUCER", - SpanKind::Consumer => "SPAN_KIND_CONSUMER", + Self::Unspecified => "SPAN_KIND_UNSPECIFIED", + Self::Internal => "SPAN_KIND_INTERNAL", + Self::Server => "SPAN_KIND_SERVER", + Self::Client => "SPAN_KIND_CLIENT", + Self::Producer => "SPAN_KIND_PRODUCER", + Self::Consumer => "SPAN_KIND_CONSUMER", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -450,9 +450,9 @@ pub mod status { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - StatusCode::Unset => "STATUS_CODE_UNSET", - StatusCode::Ok => "STATUS_CODE_OK", - StatusCode::Error => "STATUS_CODE_ERROR", + Self::Unset => "STATUS_CODE_UNSET", + Self::Ok => "STATUS_CODE_OK", + Self::Error => "STATUS_CODE_ERROR", } } /// Creates an enum from field names used in the ProtoBuf definition. @@ -504,10 +504,10 @@ impl SpanFlags { /// (if the ProtoBuf definition does not change) and safe for programmatic use. pub fn as_str_name(&self) -> &'static str { match self { - SpanFlags::DoNotUse => "SPAN_FLAGS_DO_NOT_USE", - SpanFlags::TraceFlagsMask => "SPAN_FLAGS_TRACE_FLAGS_MASK", - SpanFlags::ContextHasIsRemoteMask => "SPAN_FLAGS_CONTEXT_HAS_IS_REMOTE_MASK", - SpanFlags::ContextIsRemoteMask => "SPAN_FLAGS_CONTEXT_IS_REMOTE_MASK", + Self::DoNotUse => "SPAN_FLAGS_DO_NOT_USE", + Self::TraceFlagsMask => "SPAN_FLAGS_TRACE_FLAGS_MASK", + Self::ContextHasIsRemoteMask => "SPAN_FLAGS_CONTEXT_HAS_IS_REMOTE_MASK", + Self::ContextIsRemoteMask => "SPAN_FLAGS_CONTEXT_IS_REMOTE_MASK", } } /// Creates an enum from field names used in the ProtoBuf definition. From d0c85ddd1b18281ad840eb37548006ffa7e09dc7 Mon Sep 17 00:00:00 2001 From: Utkarsh Umesan Pillai <66651184+utpilla@users.noreply.github.com> Date: Mon, 23 Sep 2024 23:10:35 +0000 Subject: [PATCH 2/9] Update CHANGELOG --- opentelemetry-proto/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/opentelemetry-proto/CHANGELOG.md b/opentelemetry-proto/CHANGELOG.md index cbc72a39cd..35a1564fb0 100644 --- a/opentelemetry-proto/CHANGELOG.md +++ b/opentelemetry-proto/CHANGELOG.md @@ -3,6 +3,7 @@ ## vNext - Fix JSON serialization of `metrics::Exemplar` and `trace::span::Link` [#2069](https://github.com/open-telemetry/opentelemetry-rust/pull/2069) +- Bump MSRV to 1.71.1 [2140](https://github.com/open-telemetry/opentelemetry-rust/pull/2140) ## v0.25.0 - Update `opentelemetry` dependency version to 0.25 From 0631d381efa49d8f1d33713ccf66d475fe372b54 Mon Sep 17 00:00:00 2001 From: Utkarsh Umesan Pillai <66651184+utpilla@users.noreply.github.com> Date: Mon, 23 Sep 2024 23:14:48 +0000 Subject: [PATCH 3/9] Update msrv --- scripts/msrv_config.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/msrv_config.json b/scripts/msrv_config.json index 321c2afda3..0511e42690 100644 --- a/scripts/msrv_config.json +++ b/scripts/msrv_config.json @@ -9,9 +9,11 @@ "opentelemetry-appender-log/Cargo.toml", "opentelemetry-appender-tracing/Cargo.toml" ], - "1.70.0": [ - "opentelemetry-otlp/Cargo.toml", + "1.71.0": [ "opentelemetry-proto/Cargo.toml" + ], + "1.71.1": [ + "opentelemetry-otlp/Cargo.toml" ] } \ No newline at end of file From ee13ef949f4d4a0f0ee837ad07f0f5a1897ff1cc Mon Sep 17 00:00:00 2001 From: Utkarsh Umesan Pillai <66651184+utpilla@users.noreply.github.com> Date: Mon, 23 Sep 2024 23:20:49 +0000 Subject: [PATCH 4/9] Code changes --- opentelemetry-otlp/Cargo.toml | 2 +- opentelemetry-otlp/README.md | 4 ++-- opentelemetry-proto/Cargo.toml | 2 +- opentelemetry-proto/README.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/opentelemetry-otlp/Cargo.toml b/opentelemetry-otlp/Cargo.toml index 859d72529e..58882b30e2 100644 --- a/opentelemetry-otlp/Cargo.toml +++ b/opentelemetry-otlp/Cargo.toml @@ -13,7 +13,7 @@ categories = [ keywords = ["opentelemetry", "otlp", "logging", "tracing", "metrics"] license = "Apache-2.0" edition = "2021" -rust-version = "1.70" +rust-version = "1.71.1" autotests = false [[test]] diff --git a/opentelemetry-otlp/README.md b/opentelemetry-otlp/README.md index c9fb019de2..ae157c6562 100644 --- a/opentelemetry-otlp/README.md +++ b/opentelemetry-otlp/README.md @@ -30,7 +30,7 @@ can easily instrument your applications or systems, no matter their language, infrastructure, or runtime environment. Crucially, the storage and visualization of telemetry is intentionally left to other tools. -*Compiler support: [requires `rustc` 1.70+][msrv]* +*Compiler support: [requires `rustc` 1.71.1+][msrv]* [Prometheus]: https://prometheus.io [Jaeger]: https://www.jaegertracing.io @@ -43,7 +43,7 @@ See [docs](https://docs.rs/opentelemetry-otlp). ## Supported Rust Versions OpenTelemetry is built against the latest stable release. The minimum supported -version is 1.70. The current OpenTelemetry version is not guaranteed to build +version is 1.71.1. The current OpenTelemetry version is not guaranteed to build on Rust versions earlier than the minimum supported version. The current stable Rust compiler and the three most recent minor versions diff --git a/opentelemetry-proto/Cargo.toml b/opentelemetry-proto/Cargo.toml index 66593f2a22..7c4a5f7a19 100644 --- a/opentelemetry-proto/Cargo.toml +++ b/opentelemetry-proto/Cargo.toml @@ -13,7 +13,7 @@ categories = [ keywords = ["opentelemetry", "otlp", "logging", "tracing", "metrics"] license = "Apache-2.0" edition = "2021" -rust-version = "1.71.1" +rust-version = "1.70" autotests = false [lib] diff --git a/opentelemetry-proto/README.md b/opentelemetry-proto/README.md index 6e0a920048..e655fbeacd 100644 --- a/opentelemetry-proto/README.md +++ b/opentelemetry-proto/README.md @@ -7,4 +7,4 @@ This crate contains generated files from [opentelemetry-proto](https://github.co repository and transformation between types from generated files and types defined in [opentelemetry](https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry). -*Compiler support: [requires `rustc` 1.71.1+] \ No newline at end of file +*Compiler support: [requires `rustc` 1.70+] \ No newline at end of file From e43f14d48dbcda77096d711e2f79ecfc7ffc40b3 Mon Sep 17 00:00:00 2001 From: Utkarsh Umesan Pillai <66651184+utpilla@users.noreply.github.com> Date: Mon, 23 Sep 2024 23:23:25 +0000 Subject: [PATCH 5/9] Code changes --- opentelemetry-otlp/CHANGELOG.md | 1 + opentelemetry-proto/CHANGELOG.md | 1 - scripts/msrv_config.json | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/opentelemetry-otlp/CHANGELOG.md b/opentelemetry-otlp/CHANGELOG.md index 584d80ed7f..fa56e16469 100644 --- a/opentelemetry-otlp/CHANGELOG.md +++ b/opentelemetry-otlp/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog ## vNext +- Bump MSRV to 1.71.1 [2140](https://github.com/open-telemetry/opentelemetry-rust/pull/2140) ## v0.25.0 diff --git a/opentelemetry-proto/CHANGELOG.md b/opentelemetry-proto/CHANGELOG.md index 35a1564fb0..cbc72a39cd 100644 --- a/opentelemetry-proto/CHANGELOG.md +++ b/opentelemetry-proto/CHANGELOG.md @@ -3,7 +3,6 @@ ## vNext - Fix JSON serialization of `metrics::Exemplar` and `trace::span::Link` [#2069](https://github.com/open-telemetry/opentelemetry-rust/pull/2069) -- Bump MSRV to 1.71.1 [2140](https://github.com/open-telemetry/opentelemetry-rust/pull/2140) ## v0.25.0 - Update `opentelemetry` dependency version to 0.25 diff --git a/scripts/msrv_config.json b/scripts/msrv_config.json index 0511e42690..68f5409e36 100644 --- a/scripts/msrv_config.json +++ b/scripts/msrv_config.json @@ -9,11 +9,11 @@ "opentelemetry-appender-log/Cargo.toml", "opentelemetry-appender-tracing/Cargo.toml" ], - "1.71.0": [ + "1.70.0": [ "opentelemetry-proto/Cargo.toml" ], "1.71.1": [ "opentelemetry-otlp/Cargo.toml" ] - } +} \ No newline at end of file From 5beb4bc221bf58829f24e26dbd4fbe877628fe36 Mon Sep 17 00:00:00 2001 From: Utkarsh Umesan Pillai <66651184+utpilla@users.noreply.github.com> Date: Mon, 23 Sep 2024 23:25:57 +0000 Subject: [PATCH 6/9] Code changes --- opentelemetry-proto/CHANGELOG.md | 1 + opentelemetry-proto/README.md | 2 +- scripts/msrv_config.json | 6 ++---- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/opentelemetry-proto/CHANGELOG.md b/opentelemetry-proto/CHANGELOG.md index cbc72a39cd..35a1564fb0 100644 --- a/opentelemetry-proto/CHANGELOG.md +++ b/opentelemetry-proto/CHANGELOG.md @@ -3,6 +3,7 @@ ## vNext - Fix JSON serialization of `metrics::Exemplar` and `trace::span::Link` [#2069](https://github.com/open-telemetry/opentelemetry-rust/pull/2069) +- Bump MSRV to 1.71.1 [2140](https://github.com/open-telemetry/opentelemetry-rust/pull/2140) ## v0.25.0 - Update `opentelemetry` dependency version to 0.25 diff --git a/opentelemetry-proto/README.md b/opentelemetry-proto/README.md index e655fbeacd..6e0a920048 100644 --- a/opentelemetry-proto/README.md +++ b/opentelemetry-proto/README.md @@ -7,4 +7,4 @@ This crate contains generated files from [opentelemetry-proto](https://github.co repository and transformation between types from generated files and types defined in [opentelemetry](https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry). -*Compiler support: [requires `rustc` 1.70+] \ No newline at end of file +*Compiler support: [requires `rustc` 1.71.1+] \ No newline at end of file diff --git a/scripts/msrv_config.json b/scripts/msrv_config.json index 68f5409e36..f1567786f9 100644 --- a/scripts/msrv_config.json +++ b/scripts/msrv_config.json @@ -9,11 +9,9 @@ "opentelemetry-appender-log/Cargo.toml", "opentelemetry-appender-tracing/Cargo.toml" ], - "1.70.0": [ - "opentelemetry-proto/Cargo.toml" - ], "1.71.1": [ - "opentelemetry-otlp/Cargo.toml" + "opentelemetry-otlp/Cargo.toml", + "opentelemetry-proto/Cargo.toml" ] } \ No newline at end of file From a93f1c0148e0c25ffaca91832e031ff17d36f6c9 Mon Sep 17 00:00:00 2001 From: Utkarsh Umesan Pillai <66651184+utpilla@users.noreply.github.com> Date: Mon, 23 Sep 2024 23:26:35 +0000 Subject: [PATCH 7/9] Code changes --- opentelemetry-proto/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentelemetry-proto/Cargo.toml b/opentelemetry-proto/Cargo.toml index 7c4a5f7a19..66593f2a22 100644 --- a/opentelemetry-proto/Cargo.toml +++ b/opentelemetry-proto/Cargo.toml @@ -13,7 +13,7 @@ categories = [ keywords = ["opentelemetry", "otlp", "logging", "tracing", "metrics"] license = "Apache-2.0" edition = "2021" -rust-version = "1.70" +rust-version = "1.71.1" autotests = false [lib] From 27e721f37428940f7095fa54bb48c39a9da2cf25 Mon Sep 17 00:00:00 2001 From: Utkarsh Umesan Pillai <66651184+utpilla@users.noreply.github.com> Date: Mon, 23 Sep 2024 23:28:36 +0000 Subject: [PATCH 8/9] Fix msrv json --- scripts/msrv_config.json | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/scripts/msrv_config.json b/scripts/msrv_config.json index f1567786f9..f7ee84b23c 100644 --- a/scripts/msrv_config.json +++ b/scripts/msrv_config.json @@ -1,17 +1,16 @@ { - "1.65.0": [ - "opentelemetry/Cargo.toml", - "opentelemetry-sdk/Cargo.toml", - "opentelemetry-stdout/Cargo.toml", - "opentelemetry-http/Cargo.toml", - "opentelemetry-jaeger-propagator/Cargo.toml", - "opentelemetry-zipkin/Cargo.toml", - "opentelemetry-appender-log/Cargo.toml", - "opentelemetry-appender-tracing/Cargo.toml" - ], - "1.71.1": [ - "opentelemetry-otlp/Cargo.toml", - "opentelemetry-proto/Cargo.toml" - ] + "1.65.0": [ + "opentelemetry/Cargo.toml", + "opentelemetry-sdk/Cargo.toml", + "opentelemetry-stdout/Cargo.toml", + "opentelemetry-http/Cargo.toml", + "opentelemetry-jaeger-propagator/Cargo.toml", + "opentelemetry-zipkin/Cargo.toml", + "opentelemetry-appender-log/Cargo.toml", + "opentelemetry-appender-tracing/Cargo.toml" + ], + "1.71.1": [ + "opentelemetry-otlp/Cargo.toml", + "opentelemetry-proto/Cargo.toml" + ] } - \ No newline at end of file From deeb94115b43458f96aa30b52e5ff705a6b73e0a Mon Sep 17 00:00:00 2001 From: Utkarsh Umesan Pillai <66651184+utpilla@users.noreply.github.com> Date: Mon, 23 Sep 2024 23:30:04 +0000 Subject: [PATCH 9/9] Update msrv workflow --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7002f0c0b..be78936cff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -104,7 +104,7 @@ jobs: strategy: matrix: os: [windows-latest, ubuntu-latest] - rust: [1.65.0, 1.70.0] + rust: [1.65.0, 1.71.1] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4