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

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
This commit is contained in:
Marshall Bowers 2024-01-30 22:01:35 -05:00 committed by GitHub
parent 28f875f5f9
commit dbb5fad147
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
14 changed files with 17 additions and 17 deletions

View File

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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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"] }

View File

@ -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"] }

View File

@ -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"] }

View File

@ -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

View File

@ -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]

View File

@ -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" }

View File

@ -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

View File

@ -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

View File

@ -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" }

View File

@ -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" }