From a59c3f55a01d2c61afbc8ccadf4374cc159bf947 Mon Sep 17 00:00:00 2001 From: Davide Petilli Date: Sat, 20 Apr 2024 12:13:43 +0200 Subject: [PATCH] Update rdkafka-lib version to ^0.36 (#226) * Update rdkafka-lib version to ^0.36 The rdkafka-lib version being used has been updated from ^0.29 to ^0.36. This update in the package version is necessary for better compatibility with the latest kafka features. Signed-off-by: Davide Petilli * Upgrade version of rdkafka library example Signed-off-by: Davide Petilli --------- Signed-off-by: Davide Petilli --- Cargo.toml | 2 +- example-projects/rdkafka-example/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 29f150b..871c36e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ uuid = { version = "1", features = ["v4"] } actix-web = { version = "4", optional = true } actix-http = { version = "3", optional = true } reqwest-lib = { version = "^0.11", default-features = false, features = ["rustls-tls"], optional = true, package = "reqwest" } -rdkafka-lib = { version = "^0.29", features = ["cmake-build"], optional = true, package = "rdkafka" } +rdkafka-lib = { version = "^0.36", features = ["cmake-build"], optional = true, package = "rdkafka" } warp-lib = { version = "^0.3", optional = true, package = "warp" } async-trait = { version = "^0.1.33", optional = true } bytes = { version = "^1.0", optional = true } diff --git a/example-projects/rdkafka-example/Cargo.toml b/example-projects/rdkafka-example/Cargo.toml index f15f3ac..802021f 100644 --- a/example-projects/rdkafka-example/Cargo.toml +++ b/example-projects/rdkafka-example/Cargo.toml @@ -16,4 +16,4 @@ serde_json = "^1.0" futures = "^0.3" tokio = { version = "^1.0", features = ["full"] } clap = "2.33.1" -rdkafka = { version = "^0.29", features = ["cmake-build"] } +rdkafka = { version = "^0.36", features = ["cmake-build"] }