Fix some formatting issues in `Cargo.toml` files (#7127)

Marshall Bowers created

This PR fixes some formatting issues in some of the `Cargo.toml` files.

I tried to fix most of these in #7126, but there were a few that I
missed.

Release Notes:

- N/A

Change summary

crates/assets/Cargo.toml          | 2 +-
crates/assistant/Cargo.toml       | 2 +-
crates/collab/Cargo.toml          | 4 ++--
crates/copilot/Cargo.toml         | 2 +-
crates/copilot_ui/Cargo.toml      | 4 ++--
crates/diagnostics/Cargo.toml     | 4 ++--
crates/feedback/Cargo.toml        | 2 +-
crates/picker/Cargo.toml          | 2 +-
crates/recent_projects/Cargo.toml | 2 +-
crates/search/Cargo.toml          | 2 +-
crates/semantic_index/Cargo.toml  | 2 +-
crates/theme/Cargo.toml           | 2 +-
crates/ui/Cargo.toml              | 2 +-
crates/vim/Cargo.toml             | 2 +-
14 files changed, 17 insertions(+), 17 deletions(-)

Detailed changes

crates/assets/Cargo.toml 🔗

@@ -7,5 +7,5 @@ license = "GPL-3.0-or-later"
 
 [dependencies]
 anyhow.workspace = true
-gpui = {path = "../gpui"}
+gpui = { path = "../gpui" }
 rust-embed.workspace = true

crates/assistant/Cargo.toml 🔗

@@ -14,7 +14,7 @@ ai = { path = "../ai" }
 anyhow.workspace = true
 chrono.workspace = true
 client = { path = "../client" }
-collections = { path = "../collections"}
+collections = { path = "../collections" }
 editor = { path = "../editor" }
 fs = { path = "../fs" }
 futures.workspace = true

crates/collab/Cargo.toml 🔗

@@ -71,7 +71,7 @@ collections = { path = "../collections", features = ["test-support"] }
 ctor.workspace = true
 editor = { path = "../editor", features = ["test-support"] }
 env_logger.workspace = true
-file_finder = { path = "../file_finder"}
+file_finder = { path = "../file_finder" }
 fs = { path = "../fs", features = ["test-support"] }
 git = { path = "../git", features = ["test-support"] }
 gpui = { path = "../gpui", features = ["test-support"] }
@@ -80,7 +80,7 @@ language = { path = "../language", features = ["test-support"] }
 lazy_static.workspace = true
 live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
 lsp = { path = "../lsp", features = ["test-support"] }
-menu = { path = "../menu"}
+menu = { path = "../menu" }
 node_runtime = { path = "../node_runtime" }
 notifications = { path = "../notifications", features = ["test-support"] }
 pretty_assertions.workspace = true

crates/copilot/Cargo.toml 🔗

@@ -29,7 +29,7 @@ gpui = { path = "../gpui" }
 language = { path = "../language" }
 log.workspace = true
 lsp = { path = "../lsp" }
-node_runtime = { path = "../node_runtime"}
+node_runtime = { path = "../node_runtime" }
 parking_lot.workspace = true
 serde.workspace = true
 serde_derive.workspace = true

crates/copilot_ui/Cargo.toml 🔗

@@ -22,8 +22,8 @@ smol.workspace = true
 theme = { path = "../theme" }
 ui = { path = "../ui" }
 util = { path = "../util" }
-workspace = {path = "../workspace" }
-zed_actions = { path = "../zed_actions"}
+workspace = { path = "../workspace" }
+zed_actions = { path = "../zed_actions" }
 
 [dev-dependencies]
 editor = { path = "../editor", features = ["test-support"] }

crates/diagnostics/Cargo.toml 🔗

@@ -28,7 +28,7 @@ smallvec.workspace = true
 theme = { path = "../theme" }
 ui = { path = "../ui" }
 util = { path = "../util" }
-workspace = {path = "../workspace" }
+workspace = { path = "../workspace" }
 
 [dev-dependencies]
 client = { path = "../client", features = ["test-support"] }
@@ -39,4 +39,4 @@ lsp = { path = "../lsp", features = ["test-support"] }
 serde_json.workspace = true
 theme = { path = "../theme", features = ["test-support"] }
 unindent.workspace = true
-workspace = {path = "../workspace", features = ["test-support"] }
+workspace = { path = "../workspace", features = ["test-support"] }

crates/feedback/Cargo.toml 🔗

@@ -41,7 +41,7 @@ tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown",
 ui = { path = "../ui" }
 urlencoding = "2.1.2"
 util = { path = "../util" }
-workspace = { path = "../workspace"}
+workspace = { path = "../workspace" }
 
 [dev-dependencies]
 editor = { path = "../editor", features = ["test-support"] }

crates/picker/Cargo.toml 🔗

@@ -18,7 +18,7 @@ settings = { path = "../settings" }
 theme = { path = "../theme" }
 ui = { path = "../ui" }
 util = { path = "../util" }
-workspace = { path = "../workspace"}
+workspace = { path = "../workspace" }
 
 [dev-dependencies]
 ctor.workspace = true

crates/recent_projects/Cargo.toml 🔗

@@ -23,7 +23,7 @@ smol.workspace = true
 text = { path = "../text" }
 theme = { path = "../theme" }
 ui = { path = "../ui" }
-util = { path = "../util"}
+util = { path = "../util" }
 workspace = { path = "../workspace" }
 
 [dev-dependencies]

crates/search/Cargo.toml 🔗

@@ -29,7 +29,7 @@ settings = { path = "../settings" }
 smallvec.workspace = true
 smol.workspace = true
 theme = { path = "../theme" }
-ui = {path = "../ui"}
+ui = { path = "../ui" }
 util = { path = "../util" }
 workspace = { path = "../workspace" }
 

crates/semantic_index/Cargo.toml 🔗

@@ -48,7 +48,7 @@ ctor.workspace = true
 env_logger.workspace = true
 gpui = { path = "../gpui", features = ["test-support"] }
 language = { path = "../language", features = ["test-support"] }
-node_runtime = { path = "../node_runtime"}
+node_runtime = { path = "../node_runtime" }
 pretty_assertions.workspace = true
 project = { path = "../project", features = ["test-support"] }
 rand.workspace = true

crates/theme/Cargo.toml 🔗

@@ -20,7 +20,7 @@ doctest = false
 
 [dependencies]
 anyhow.workspace = true
-color = {path = "../color"}
+color = { path = "../color" }
 derive_more.workspace = true
 fs = { path = "../fs" }
 futures.workspace = true

crates/ui/Cargo.toml 🔗

@@ -14,7 +14,7 @@ anyhow.workspace = true
 chrono = "0.4"
 gpui = { path = "../gpui" }
 itertools = { version = "0.11.0", optional = true }
-menu = { path = "../menu"}
+menu = { path = "../menu" }
 rand = "0.8"
 serde.workspace = true
 settings = { path = "../settings" }

crates/vim/Cargo.toml 🔗

@@ -35,7 +35,7 @@ serde_json.workspace = true
 settings = { path = "../settings" }
 theme = { path = "../theme" }
 tokio = { version = "1.15", "optional" = true }
-ui = { path = "../ui"}
+ui = { path = "../ui" }
 workspace = { path = "../workspace" }
 zed_actions = { path = "../zed_actions" }