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] [dependencies]
anyhow.workspace = true anyhow.workspace = true
gpui = {path = "../gpui"} gpui = { path = "../gpui" }
rust-embed.workspace = true rust-embed.workspace = true

View file

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

View file

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

View file

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

View file

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

View file

@ -28,7 +28,7 @@ smallvec.workspace = true
theme = { path = "../theme" } theme = { path = "../theme" }
ui = { path = "../ui" } ui = { path = "../ui" }
util = { path = "../util" } util = { path = "../util" }
workspace = {path = "../workspace" } workspace = { path = "../workspace" }
[dev-dependencies] [dev-dependencies]
client = { path = "../client", features = ["test-support"] } client = { path = "../client", features = ["test-support"] }
@ -39,4 +39,4 @@ lsp = { path = "../lsp", features = ["test-support"] }
serde_json.workspace = true serde_json.workspace = true
theme = { path = "../theme", features = ["test-support"] } theme = { path = "../theme", features = ["test-support"] }
unindent.workspace = true 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" } ui = { path = "../ui" }
urlencoding = "2.1.2" urlencoding = "2.1.2"
util = { path = "../util" } util = { path = "../util" }
workspace = { path = "../workspace"} workspace = { path = "../workspace" }
[dev-dependencies] [dev-dependencies]
editor = { path = "../editor", features = ["test-support"] } editor = { path = "../editor", features = ["test-support"] }

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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