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 <davide@petilli.me>

* Upgrade version of rdkafka library example

Signed-off-by: Davide Petilli <davide@petilli.me>

---------

Signed-off-by: Davide Petilli <davide@petilli.me>
This commit is contained in:
Davide Petilli 2024-04-20 12:13:43 +02:00 committed by GitHub
parent 1978ae16aa
commit a59c3f55a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ uuid = { version = "1", features = ["v4"] }
actix-web = { version = "4", optional = true } actix-web = { version = "4", optional = true }
actix-http = { version = "3", optional = true } actix-http = { version = "3", optional = true }
reqwest-lib = { version = "^0.11", default-features = false, features = ["rustls-tls"], optional = true, package = "reqwest" } 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" } warp-lib = { version = "^0.3", optional = true, package = "warp" }
async-trait = { version = "^0.1.33", optional = true } async-trait = { version = "^0.1.33", optional = true }
bytes = { version = "^1.0", optional = true } bytes = { version = "^1.0", optional = true }

View File

@ -16,4 +16,4 @@ serde_json = "^1.0"
futures = "^0.3" futures = "^0.3"
tokio = { version = "^1.0", features = ["full"] } tokio = { version = "^1.0", features = ["full"] }
clap = "2.33.1" clap = "2.33.1"
rdkafka = { version = "^0.29", features = ["cmake-build"] } rdkafka = { version = "^0.36", features = ["cmake-build"] }