Skip to content

Commit e679696

Browse files
Update opentelemetry to 0.19 (#12)
Signed-off-by: Jayson Reis <[email protected]> Co-authored-by: Julian Tescher <[email protected]>
1 parent 0478b0e commit e679696

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,15 @@ jobs:
8080
- run: cargo hack check --feature-powerset --no-dev-deps
8181

8282
check-msrv:
83-
# Run `cargo check` on our minimum supported Rust version (1.56.0). This
83+
# Run `cargo check` on our minimum supported Rust version (1.60.0). This
8484
# checks with minimal versions; maximal versions are checked above.
8585
name: "cargo check (+MSRV -Zminimal-versions)"
8686
needs: check
8787
runs-on: ubuntu-latest
8888
strategy:
8989
matrix:
9090
toolchain:
91-
- 1.56.0
91+
- 1.60.0
9292
- stable
9393
steps:
9494
- uses: actions/checkout@v3

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ categories = [
1717
keywords = ["tracing", "opentelemetry", "jaeger", "zipkin", "async"]
1818
license = "MIT"
1919
edition = "2018"
20-
rust-version = "1.56.0"
20+
rust-version = "1.60.0"
2121

2222
[features]
2323
default = ["tracing-log", "metrics"]
2424
# Enables support for exporting OpenTelemetry metrics
2525
metrics = ["opentelemetry/metrics"]
2626

2727
[dependencies]
28-
opentelemetry = { version = "0.18.0", default-features = false, features = ["trace"] }
28+
opentelemetry = { version = "0.19.0", default-features = false, features = ["trace"] }
2929
tracing = { version = "0.1.35", default-features = false, features = ["std"] }
3030
tracing-core = "0.1.28"
3131
tracing-subscriber = { version = "0.3.0", default-features = false, features = ["registry", "std"] }
@@ -39,7 +39,7 @@ thiserror = { version = "1.0.31", optional = true }
3939
[dev-dependencies]
4040
async-trait = "0.1.56"
4141
criterion = { version = "0.3.6", default-features = false }
42-
opentelemetry-jaeger = "0.17.0"
42+
opentelemetry-jaeger = "0.18.0"
4343
futures-util = { version = "0.3", default-features = false }
4444
tokio = { version = "1", features = ["full"] }
4545
tokio-stream = "0.1"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The crate provides the following types:
5050
[`tracing`]: https://crates.io/crates/tracing
5151
[OpenTelemetry]: https://opentelemetry.io/
5252

53-
*Compiler support: [requires `rustc` 1.56+][msrv]*
53+
*Compiler support: [requires `rustc` 1.60+][msrv]*
5454

5555
[msrv]: #supported-rust-versions
5656

@@ -110,7 +110,7 @@ $ firefox http://localhost:16686/
110110
## Supported Rust Versions
111111

112112
Tracing Opentelemetry is built against the latest stable release. The minimum
113-
supported version is 1.56. The current Tracing version is not guaranteed to
113+
supported version is 1.60. The current Tracing version is not guaranteed to
114114
build on Rust versions earlier than the minimum supported version.
115115

116116
Tracing follows the same compiler support policies as the rest of the Tokio

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//! [OpenTelemetry]: https://opentelemetry.io
1010
//! [`tracing`]: https://github.com/tokio-rs/tracing
1111
//!
12-
//! *Compiler support: [requires `rustc` 1.56+][msrv]*
12+
//! *Compiler support: [requires `rustc` 1.60+][msrv]*
1313
//!
1414
//! [msrv]: #supported-rust-versions
1515
//!
@@ -86,7 +86,7 @@
8686
//! ## Supported Rust Versions
8787
//!
8888
//! Tracing is built against the latest stable release. The minimum supported
89-
//! version is 1.56. The current Tracing version is not guaranteed to build on
89+
//! version is 1.60. The current Tracing version is not guaranteed to build on
9090
//! Rust versions earlier than the minimum supported version.
9191
//!
9292
//! Tracing follows the same compiler support policies as the rest of the Tokio

0 commit comments

Comments
 (0)