Specify uuid crate in the root Cargo.toml

Max Brunsfeld and Mikayla created

Co-authored-by: Mikayla <mikayla@zed.dev>

Change summary

Cargo.toml                  | 1 +
crates/assistant/Cargo.toml | 2 +-
crates/channel/Cargo.toml   | 3 ++-
crates/client/Cargo.toml    | 2 +-
crates/collab/Cargo.toml    | 1 +
crates/gpui/Cargo.toml      | 2 +-
crates/sqlez/Cargo.toml     | 2 +-
crates/workspace/Cargo.toml | 2 +-
crates/zed/Cargo.toml       | 2 +-
9 files changed, 10 insertions(+), 7 deletions(-)

Detailed changes

Cargo.toml 🔗

@@ -120,6 +120,7 @@ tree-sitter = "0.20"
 unindent = { version = "0.1.7" }
 pretty_assertions = "1.3.0"
 git2 = { version = "0.15", default-features = false}
+uuid = { version = "1.1.2", features = ["v4"] }
 
 tree-sitter-bash = { git = "https://github.com/tree-sitter/tree-sitter-bash", rev = "1b0321ee85701d5036c334a6f04761cdc672e64c" }
 tree-sitter-c = "0.20.1"

crates/assistant/Cargo.toml 🔗

@@ -21,8 +21,8 @@ search = { path = "../search" }
 settings = { path = "../settings" }
 theme = { path = "../theme" }
 util = { path = "../util" }
-uuid = { version = "1.1.2", features = ["v4"] }
 workspace = { path = "../workspace" }
+uuid.workspace = true
 
 anyhow.workspace = true
 chrono = { version = "0.4", features = ["serde"] }

crates/channel/Cargo.toml 🔗

@@ -23,6 +23,7 @@ language = { path = "../language" }
 settings = { path = "../settings" }
 feature_flags = { path = "../feature_flags" }
 sum_tree = { path = "../sum_tree" }
+clock = { path = "../clock" }
 
 anyhow.workspace = true
 futures.workspace = true
@@ -38,7 +39,7 @@ smol.workspace = true
 thiserror.workspace = true
 time.workspace = true
 tiny_http = "0.8"
-uuid = { version = "1.1.2", features = ["v4"] }
+uuid.workspace = true
 url = "2.2"
 serde.workspace = true
 serde_derive.workspace = true

crates/client/Cargo.toml 🔗

@@ -37,7 +37,7 @@ smol.workspace = true
 thiserror.workspace = true
 time.workspace = true
 tiny_http = "0.8"
-uuid = { version = "1.1.2", features = ["v4"] }
+uuid.workspace = true
 url = "2.2"
 serde.workspace = true
 serde_derive.workspace = true

crates/collab/Cargo.toml 🔗

@@ -57,6 +57,7 @@ toml.workspace = true
 tracing = "0.1.34"
 tracing-log = "0.1.3"
 tracing-subscriber = { version = "0.3.11", features = ["env-filter", "json"] }
+uuid.workspace = true
 
 [dev-dependencies]
 audio = { path = "../audio" }

crates/gpui/Cargo.toml 🔗

@@ -53,7 +53,7 @@ thiserror.workspace = true
 time.workspace = true
 tiny-skia = "0.5"
 usvg = { version = "0.14", features = [] }
-uuid = { version = "1.1.2", features = ["v4"] }
+uuid.workspace = true
 waker-fn = "1.1.0"
 
 [build-dependencies]

crates/sqlez/Cargo.toml 🔗

@@ -13,4 +13,4 @@ thread_local = "1.1.4"
 lazy_static.workspace = true
 parking_lot.workspace = true
 futures.workspace = true
-uuid = { version = "1.1.2", features = ["v4"] }
+uuid.workspace = true

crates/workspace/Cargo.toml 🔗

@@ -51,7 +51,7 @@ serde.workspace = true
 serde_derive.workspace = true
 serde_json.workspace = true
 smallvec.workspace = true
-uuid = { version = "1.1.2", features = ["v4"] }
+uuid.workspace = true
 
 [dev-dependencies]
 call = { path = "../call", features = ["test-support"] }

crates/zed/Cargo.toml 🔗

@@ -138,7 +138,7 @@ tree-sitter-nu.workspace = true
 
 url = "2.2"
 urlencoding = "2.1.2"
-uuid = { version = "1.1.2", features = ["v4"] }
+uuid.workspace = true
 
 [dev-dependencies]
 call = { path = "../call", features = ["test-support"] }