Sort dependencies in Cargo.toml files (#7126)

This PR sorts the dependency lists in our `Cargo.toml` files so that
they are in alphabetical order.

This should make them easier to visually scan when looking for a
dependency.

Apologies in advance for any merge conflicts 🙈 

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-01-30 21:41:29 -05:00 committed by GitHub
parent d97e780135
commit e338f34097
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
73 changed files with 773 additions and 838 deletions

View file

@ -20,50 +20,46 @@ test-support = [
]
[dependencies]
db = { path = "../db" }
anyhow.workspace = true
async-recursion = "1.0.0"
bincode = "1.2.1"
call = { path = "../call" }
client = { path = "../client" }
collections = { path = "../collections" }
# context_menu = { path = "../context_menu" }
db = { path = "../db" }
derive_more.workspace = true
fs = { path = "../fs" }
futures.workspace = true
gpui = { path = "../gpui" }
install_cli = { path = "../install_cli" }
language = { path = "../language" }
#menu = { path = "../menu" }
node_runtime = { path = "../node_runtime" }
project = { path = "../project" }
settings = { path = "../settings" }
sqlez = { path = "../sqlez" }
terminal = { path = "../terminal" }
theme = { path = "../theme" }
util = { path = "../util" }
ui = { path = "../ui" }
async-recursion = "1.0.0"
itertools = "0.10"
bincode = "1.2.1"
anyhow.workspace = true
derive_more.workspace = true
futures.workspace = true
language = { path = "../language" }
lazy_static.workspace = true
log.workspace = true
node_runtime = { path = "../node_runtime" }
parking_lot.workspace = true
postage.workspace = true
project = { path = "../project" }
schemars.workspace = true
serde.workspace = true
serde_derive.workspace = true
serde_json.workspace = true
settings = { path = "../settings" }
smallvec.workspace = true
sqlez = { path = "../sqlez" }
terminal = { path = "../terminal" }
theme = { path = "../theme" }
ui = { path = "../ui" }
util = { path = "../util" }
uuid.workspace = true
[dev-dependencies]
call = { path = "../call", features = ["test-support"] }
client = { path = "../client", features = ["test-support"] }
db = { path = "../db", features = ["test-support"] }
env_logger.workspace = true
fs = { path = "../fs", features = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }
indoc.workspace = true
project = { path = "../project", features = ["test-support"] }
settings = { path = "../settings", features = ["test-support"] }
fs = { path = "../fs", features = ["test-support"] }
db = { path = "../db", features = ["test-support"] }
indoc.workspace = true
env_logger.workspace = true