mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
6cdf4e98fc
Also avoid production dependencies on fs and rope in collab
70 lines
2.0 KiB
TOML
70 lines
2.0 KiB
TOML
[package]
|
|
name = "project"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/project.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = [
|
|
"client/test-support",
|
|
"db/test-support",
|
|
"language/test-support",
|
|
"settings/test-support",
|
|
"text/test-support",
|
|
]
|
|
|
|
[dependencies]
|
|
text = { path = "../text" }
|
|
client = { path = "../client" }
|
|
clock = { path = "../clock" }
|
|
collections = { path = "../collections" }
|
|
db = { path = "../db" }
|
|
fs = { path = "../fs" }
|
|
fsevent = { path = "../fsevent" }
|
|
fuzzy = { path = "../fuzzy" }
|
|
git = { path = "../git" }
|
|
gpui = { path = "../gpui" }
|
|
language = { path = "../language" }
|
|
lsp = { path = "../lsp" }
|
|
rpc = { path = "../rpc" }
|
|
settings = { path = "../settings" }
|
|
sum_tree = { path = "../sum_tree" }
|
|
util = { path = "../util" }
|
|
aho-corasick = "0.7"
|
|
anyhow = "1.0.57"
|
|
async-trait = "0.1"
|
|
futures = "0.3"
|
|
ignore = "0.4"
|
|
lazy_static = "1.4.0"
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
|
parking_lot = "0.11.1"
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
|
pulldown-cmark = { version = "0.9.1", default-features = false }
|
|
rand = "0.8.3"
|
|
regex = "1.5"
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
serde_json = { version = "1.0", features = ["preserve_order"] }
|
|
sha2 = "0.10"
|
|
similar = "1.3"
|
|
smol = "1.2.5"
|
|
thiserror = "1.0.29"
|
|
toml = "0.5"
|
|
rocksdb = "0.18"
|
|
|
|
[dev-dependencies]
|
|
client = { path = "../client", features = ["test-support"] }
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
db = { path = "../db", features = ["test-support"] }
|
|
fs = { path = "../fs", features = ["test-support"] }
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
language = { path = "../language", features = ["test-support"] }
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
|
settings = { path = "../settings", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
|
tempdir = { version = "0.3.7" }
|
|
unindent = "0.1.7"
|