From b441341d3ced9cb155de2a1b9a5dabe67a9f7c2b Mon Sep 17 00:00:00 2001 From: Runji Wang Date: Sat, 14 Oct 2023 14:36:37 +0800 Subject: [PATCH] chore(deps): bump rdkafka to v0.34.0 and librdkafka to v2.2.0 (#11232) Signed-off-by: Runji Wang --- Cargo.lock | 10 ++++++---- Cargo.toml | 2 +- src/workspace-hack/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a052c981682c2..dccda78d5bb4e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4541,8 +4541,9 @@ dependencies = [ [[package]] name = "madsim-rdkafka" -version = "0.2.22" -source = "git+https://github.com/madsim-rs/madsim.git?rev=fedb1e3#fedb1e3a0a8758650c9e15076941c999150bdb31" +version = "0.3.0+0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00f9ab2d0545a55e4f209fc72c180a7e7b45a4e7baee7b4994c4628a877c5525" dependencies = [ "async-channel", "async-trait", @@ -6616,8 +6617,9 @@ dependencies = [ [[package]] name = "rdkafka-sys" -version = "4.3.0+1.9.2" -source = "git+https://github.com/MaterializeInc/rust-rdkafka?rev=8ea07c4#8ea07c4d2b96636ff093e670bc921892aee0d56a" +version = "4.6.0+2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad63c279fca41a27c231c450a2d2ad18288032e9cbb159ad16c9d96eba35aaaf" dependencies = [ "cmake", "libc", diff --git a/Cargo.toml b/Cargo.toml index 8c7030ed0d619..81d914b416d17 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -96,7 +96,7 @@ aws-types = "0.55" etcd-client = { package = "madsim-etcd-client", version = "0.4" } futures-async-stream = "0.2" hytra = "0.1" -rdkafka = { package = "madsim-rdkafka", git = "https://github.com/madsim-rs/madsim.git", rev = "fedb1e3", features = [ +rdkafka = { package = "madsim-rdkafka", version = "0.3.0", features = [ "cmake-build", ] } hashbrown = { version = "0.14.0", features = [ diff --git a/src/workspace-hack/Cargo.toml b/src/workspace-hack/Cargo.toml index c5fe625a0c65f..15d296b56b5b3 100644 --- a/src/workspace-hack/Cargo.toml +++ b/src/workspace-hack/Cargo.toml @@ -68,7 +68,7 @@ lexical-write-integer = { version = "0.8", default-features = false, features = libc = { version = "0.2", features = ["extra_traits"] } lock_api = { version = "0.4", features = ["arc_lock"] } log = { version = "0.4", default-features = false, features = ["kv_unstable", "std"] } -madsim-rdkafka = { git = "https://github.com/madsim-rs/madsim.git", rev = "fedb1e3", features = ["cmake-build", "gssapi", "ssl-vendored", "zstd"] } +madsim-rdkafka = { version = "0.3", features = ["cmake-build", "gssapi", "ssl-vendored", "zstd"] } madsim-tokio = { version = "0.2", default-features = false, features = ["fs", "io-util", "macros", "net", "process", "rt", "rt-multi-thread", "signal", "sync", "time", "tracing"] } md-5 = { version = "0.10" } mio = { version = "0.8", features = ["net", "os-ext"] }