From e2664cb4365f85f78de5b93699f6d139c952a4bc Mon Sep 17 00:00:00 2001 From: slinkydeveloper Date: Mon, 16 Sep 2024 17:33:41 +0200 Subject: [PATCH] Bump to rust-rdkafka 0.35, the latest release that seems to be ok. See https://github.com/fede1024/rust-rdkafka/issues/638#issuecomment-2045433321 for more details. No visible performance differences. --- Cargo.lock | 4 ++-- crates/ingress-kafka/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fe0e66ec0..2de8394b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5217,9 +5217,9 @@ dependencies = [ [[package]] name = "rdkafka" -version = "0.34.0" +version = "0.35.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "053adfa02fab06e86c01d586cc68aa47ee0ff4489a59469081dc12cbcde578bf" +checksum = "f16c17f411935214a5870e40aff9291f8b40a73e97bf8de29e5959c473d5ef33" dependencies = [ "futures-channel", "futures-util", diff --git a/crates/ingress-kafka/Cargo.toml b/crates/ingress-kafka/Cargo.toml index a2337a92a..8dd3e8b00 100644 --- a/crates/ingress-kafka/Cargo.toml +++ b/crates/ingress-kafka/Cargo.toml @@ -23,7 +23,7 @@ base64 = { workspace = true } bytes = { workspace = true } derive_builder = { workspace = true } opentelemetry = { workspace = true } -rdkafka = { version = "0.34", features = ["libz-static", "cmake-build"] } +rdkafka = { version = "0.35", features = ["libz-static", "cmake-build"] } schemars = { workspace = true, optional = true } serde = { workspace = true } thiserror = { workspace = true }