Skip to content

Commit

Permalink
[Backport 1.3] Rust: Fix opentelemetry_sdk dependency (#3123) (#3130)
Browse files Browse the repository at this point in the history
* Rust: Fix opentelemetry_sdk dependency (#3123)

Signed-off-by: James Xin <[email protected]>
Signed-off-by: Yury-Fridlyand <[email protected]>
Co-authored-by: James Xin <[email protected]>
  • Loading branch information
Yury-Fridlyand and jamesx-improving authored Feb 11, 2025
1 parent ea67694 commit 12437ed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
* Node: Fix `zrangeWithScores` (disallow `RangeByLex` as it is not supported) ([#2926](https://github.com/valkey-io/valkey-glide/pull/2926))
* Core: improve fix in #2381 ([#2929](https://github.com/valkey-io/valkey-glide/pull/2929))
* Java: Fix `lpopCount` null handling ([#3025](https://github.com/valkey-io/valkey-glide/pull/3025))
* Core: Fix `opentelemetry` related dependency issue (backport to 1.3) ([#3130](https://github.com/valkey-io/valkey-glide/pull/3130))

#### Operational Enhancements

Expand Down
8 changes: 4 additions & 4 deletions glide-core/telemetry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ authors = ["Valkey GLIDE Maintainers"]
lazy_static = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = "0"
futures-util = "0"
chrono = "0.4"
futures-util = "0.3"
tokio = { version = "1", features = ["macros", "time"] }

opentelemetry = "0"
opentelemetry_sdk = { version = "0", features = ["rt-tokio"] }
opentelemetry = "0.27"
opentelemetry_sdk = { version = "0.27", features = ["rt-tokio"] }

0 comments on commit 12437ed

Please sign in to comment.