From 0df69c95aa463c9d7b4b693a331a4fcd109cd035 Mon Sep 17 00:00:00 2001 From: LFC <990479+MichaelScofield@users.noreply.github.com> Date: Thu, 18 Dec 2025 14:25:48 +0800 Subject: [PATCH] chore: use official etcd-client (#7432) Signed-off-by: luofucong --- Cargo.lock | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 63f0d24feb..4bdf44a044 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4634,8 +4634,9 @@ dependencies = [ [[package]] name = "etcd-client" -version = "0.15.0" -source = "git+https://github.com/GreptimeTeam/etcd-client?rev=f62df834f0cffda355eba96691fe1a9a332b75a7#f62df834f0cffda355eba96691fe1a9a332b75a7" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88365f1a5671eb2f7fc240adb216786bc6494b38ce15f1d26ad6eaa303d5e822" dependencies = [ "http 1.3.1", "prost 0.13.5", diff --git a/Cargo.toml b/Cargo.toml index 4eaf5c4586..e257ae5c75 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -143,7 +143,7 @@ derive_builder = "0.20" derive_more = { version = "2.1", features = ["full"] } dotenv = "0.15" either = "1.15" -etcd-client = { git = "https://github.com/GreptimeTeam/etcd-client", rev = "f62df834f0cffda355eba96691fe1a9a332b75a7", features = [ +etcd-client = { version = "0.16.1", features = [ "tls", "tls-roots", ] }