From b4451d948603c1be0c50d42013044ebbdaca3655 Mon Sep 17 00:00:00 2001 From: David Herberth Date: Thu, 8 Jan 2026 19:30:56 +0100 Subject: [PATCH 1/2] build(dep): Upgrade to rdkafka 0.38 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 200ac774..dc7ef771 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ chrono = "0.4.26" coarsetime = "0.1.33" once_cell = "1.18.0" rand = "0.8.5" -rdkafka = { version = "0.37.0", features = ["cmake-build", "tracing"] } +rdkafka = { version = "0.38.0", features = ["cmake-build", "tracing"] } sentry-core = { version = ">=0.32", features = ["client"] } serde = { version = "1.0.137", features = ["derive"] } serde_json = "1.0.81" From 43bad27821a18664f2b87c82559fa14c1428d383 Mon Sep 17 00:00:00 2001 From: David Herberth Date: Thu, 8 Jan 2026 20:37:29 +0100 Subject: [PATCH 2/2] change to a version range --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dc7ef771..7e99123c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ chrono = "0.4.26" coarsetime = "0.1.33" once_cell = "1.18.0" rand = "0.8.5" -rdkafka = { version = "0.38.0", features = ["cmake-build", "tracing"] } +rdkafka = { version = ">=0.37.0,<0.39", features = ["cmake-build", "tracing"] } sentry-core = { version = ">=0.32", features = ["client"] } serde = { version = "1.0.137", features = ["derive"] } serde_json = "1.0.81"