zed/crates/workspace/Cargo.toml
Marshall Bowers e338f34097
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
2024-01-30 21:41:29 -05:00

66 lines
1.7 KiB
TOML

[package]
name = "workspace"
version = "0.1.0"
edition = "2021"
publish = false
license = "GPL-3.0-or-later"
[lib]
path = "src/workspace.rs"
doctest = false
[features]
test-support = [
"call/test-support",
"client/test-support",
"project/test-support",
"settings/test-support",
"gpui/test-support",
"fs/test-support"
]
[dependencies]
anyhow.workspace = true
async-recursion = "1.0.0"
bincode = "1.2.1"
call = { path = "../call" }
client = { path = "../client" }
collections = { path = "../collections" }
db = { path = "../db" }
derive_more.workspace = true
fs = { path = "../fs" }
futures.workspace = true
gpui = { path = "../gpui" }
install_cli = { path = "../install_cli" }
itertools = "0.10"
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"] }