mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-01 04:28:57 +00:00
e338f34097
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
65 lines
1.7 KiB
TOML
65 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"] }
|