Skip to content

Commit a59c3f5

Browse files
authored
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 <[email protected]> * Upgrade version of rdkafka library example Signed-off-by: Davide Petilli <[email protected]> --------- Signed-off-by: Davide Petilli <[email protected]>
1 parent 1978ae1 commit a59c3f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ uuid = { version = "1", features = ["v4"] }
4646
actix-web = { version = "4", optional = true }
4747
actix-http = { version = "3", optional = true }
4848
reqwest-lib = { version = "^0.11", default-features = false, features = ["rustls-tls"], optional = true, package = "reqwest" }
49-
rdkafka-lib = { version = "^0.29", features = ["cmake-build"], optional = true, package = "rdkafka" }
49+
rdkafka-lib = { version = "^0.36", features = ["cmake-build"], optional = true, package = "rdkafka" }
5050
warp-lib = { version = "^0.3", optional = true, package = "warp" }
5151
async-trait = { version = "^0.1.33", optional = true }
5252
bytes = { version = "^1.0", optional = true }

example-projects/rdkafka-example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ serde_json = "^1.0"
1616
futures = "^0.3"
1717
tokio = { version = "^1.0", features = ["full"] }
1818
clap = "2.33.1"
19-
rdkafka = { version = "^0.29", features = ["cmake-build"] }
19+
rdkafka = { version = "^0.36", features = ["cmake-build"] }

0 commit comments

Comments
 (0)