From 026c4971346e5a21514500d261de5838f0be4d1a Mon Sep 17 00:00:00 2001 From: yangyang <962032265@qq.com> Date: Mon, 15 Jul 2024 18:12:11 +0800 Subject: [PATCH] refact(registry): update cargo.toml --- registry/nacos/Cargo.toml | 2 +- registry/zookeeper/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/registry/nacos/Cargo.toml b/registry/nacos/Cargo.toml index 54530be..3d53a20 100644 --- a/registry/nacos/Cargo.toml +++ b/registry/nacos/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/apache/dubbo-rust.git" [dependencies] nacos-sdk = { version = "0.3", features = ["naming", "auth-by-http", "async"] } -dubbo.workspace = true +dubbo = {path = "../../dubbo/", version = "0.4.0" } serde_json.workspace = true serde = { workspace = true, features = ["derive"] } anyhow.workspace = true diff --git a/registry/zookeeper/Cargo.toml b/registry/zookeeper/Cargo.toml index 5ddf86a..19079b0 100644 --- a/registry/zookeeper/Cargo.toml +++ b/registry/zookeeper/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/apache/dubbo-rust.git" [dependencies] zookeeper = "0.8.0" -dubbo.workspace = true +dubbo = {path = "../../dubbo/", version = "0.4.0" } anyhow.workspace = true serde_json.workspace = true serde = { workspace = true, features = ["derive"] }