mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
78 lines
2.0 KiB
TOML
78 lines
2.0 KiB
TOML
[package]
|
|
name = "project"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[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" }
|
|
copilot = { path = "../copilot" }
|
|
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" }
|
|
terminal = { path = "../terminal" }
|
|
util = { path = "../util" }
|
|
|
|
aho-corasick = "0.7"
|
|
anyhow.workspace = true
|
|
async-trait.workspace = true
|
|
backtrace = "0.3"
|
|
futures.workspace = true
|
|
glob.workspace = true
|
|
ignore = "0.4"
|
|
lazy_static.workspace = true
|
|
log.workspace = true
|
|
parking_lot.workspace = true
|
|
postage.workspace = true
|
|
rand.workspace = true
|
|
regex.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
sha2 = "0.10"
|
|
similar = "1.3"
|
|
smol.workspace = true
|
|
thiserror.workspace = true
|
|
toml = "0.5"
|
|
|
|
[dev-dependencies]
|
|
ctor.workspace = true
|
|
env_logger.workspace = true
|
|
pretty_assertions = "1.3.0"
|
|
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.workspace = true
|
|
unindent.workspace = true
|