From f9df4def742e4aba6e2b145412ef329ec90ef1f1 Mon Sep 17 00:00:00 2001 From: Weny Xu Date: Mon, 7 Sep 2026 07:14:53 +0000 Subject: [PATCH] chore(deps): switch rskafka to upstream main (#9047) Signed-off-by: WenyXu --- Cargo.lock | 4 ++-- Cargo.toml | 7 +++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6e7326895e..1b0b338d33 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -12672,7 +12672,7 @@ dependencies = [ [[package]] name = "rskafka" version = "0.6.0" -source = "git+https://github.com/GreptimeTeam/rskafka.git?rev=5f9494104f7b43a619d6c42e2a2082e39a7b72aa#5f9494104f7b43a619d6c42e2a2082e39a7b72aa" +source = "git+https://github.com/influxdata/rskafka.git?rev=80f42eb15eb9419579a376bdf4411893a7da2728#80f42eb15eb9419579a376bdf4411893a7da2728" dependencies = [ "bytes", "chrono", @@ -12682,7 +12682,7 @@ dependencies = [ "integer-encoding 4.0.2", "lz4", "parking_lot 0.12.4", - "rand 0.9.4", + "rand 0.10.1", "rsasl", "rustls", "snap", diff --git a/Cargo.toml b/Cargo.toml index 150880813c..cc46034f1b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -161,6 +161,7 @@ futures = "0.3" futures-util = "0.3" greptime-proto = { git = "https://github.com/GreptimeTeam/greptime-proto.git", rev = "32f467fa2ba2b3588a58381a24af83de09fbb00a" } hex = "0.4" +hostname = "0.4.0" http = "1" humantime = "2.1" humantime-serde = "1.1" @@ -220,10 +221,7 @@ reqwest = { version = "0.13", default-features = false, features = [ "stream", "multipart", ] } -url = "2.3" -# Branch: feat/request-timeout -hostname = "0.4.0" -rskafka = { git = "https://github.com/GreptimeTeam/rskafka.git", rev = "5f9494104f7b43a619d6c42e2a2082e39a7b72aa", features = [ +rskafka = { git = "https://github.com/influxdata/rskafka.git", rev = "80f42eb15eb9419579a376bdf4411893a7da2728", features = [ "transport-tls", ] } rstest = "0.25" @@ -260,6 +258,7 @@ tokio-rustls = { version = "0.26.2", default-features = false } tokio-stream = "0.1" tokio-util = { version = "0.7", features = ["io-util", "compat"] } toml = "0.8.8" +url = "2.3" # Pin below 0.14.5 to avoid the `connection_timeout_future` "async fn resumed after # completion" panic (greptimedb#8265 / grpc-rust#2522). Remove once tonic ships a fix. tonic = { version = "0.14, <0.14.5", features = ["tls-aws-lc", "gzip", "zstd"] }