This is an automated email from the ASF dual-hosted git repository.
tison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/opendal.git
The following commit(s) were added to refs/heads/main by this push:
new 1328f191d build(deps): move url to workspace dependencies (#7161)
1328f191d is described below
commit 1328f191d9f6fe58c4de3423d9cb62b266d6faba
Author: Hugo <[email protected]>
AuthorDate: Sun Jan 25 09:44:56 2026 +0800
build(deps): move url to workspace dependencies (#7161)
Co-authored-by: tison <[email protected]>
---
core/Cargo.toml | 1 +
core/core/Cargo.toml | 2 +-
core/services/memcached/Cargo.toml | 2 +-
3 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 9dbbc0c7a..24a41d14b 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -56,6 +56,7 @@ serde = { version = "1", default-features = false }
serde_json = "1"
sha2 = "0.10"
tokio = { version = "1.48", default-features = false }
+url = "2.5"
uuid = { version = "1", default-features = false }
[package]
diff --git a/core/core/Cargo.toml b/core/core/Cargo.toml
index c97c8eea2..a9298eeb1 100644
--- a/core/core/Cargo.toml
+++ b/core/core/Cargo.toml
@@ -81,7 +81,7 @@ reqwest = { version = "0.12.24", features = [
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["macros", "io-util"] }
-url = "2.5"
+url = { workspace = true }
uuid = { workspace = true, features = ["serde", "v4"] }
# Optional dependencies
diff --git a/core/services/memcached/Cargo.toml
b/core/services/memcached/Cargo.toml
index f5c27e6f5..7096d0222 100644
--- a/core/services/memcached/Cargo.toml
+++ b/core/services/memcached/Cargo.toml
@@ -35,7 +35,7 @@ fastpool = "1.0.2"
opendal-core = { path = "../../core", version = "0.55.0", default-features =
false }
serde = { workspace = true, features = ["derive"] }
tokio = { workspace = true, features = ["net", "io-util"] }
-url = "2.5.7"
+url = { workspace = true }
[dev-dependencies]
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }