2021-10-04 22:07:35 +03:00
|
|
|
[package]
|
2021-10-05 02:45:05 +03:00
|
|
|
name = "project"
|
2021-10-04 22:07:35 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
2021-11-30 22:46:39 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/project.rs"
|
|
|
|
|
2021-10-04 22:07:35 +03:00
|
|
|
[features]
|
2021-11-30 22:26:12 +03:00
|
|
|
test-support = ["language/test-support", "text/test-support"]
|
2021-10-04 22:07:35 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2021-11-30 22:26:12 +03:00
|
|
|
text = { path = "../text" }
|
2021-10-21 17:26:37 +03:00
|
|
|
client = { path = "../client" }
|
2021-10-04 22:07:35 +03:00
|
|
|
clock = { path = "../clock" }
|
2021-12-14 03:35:32 +03:00
|
|
|
collections = { path = "../collections" }
|
2021-10-04 22:07:35 +03:00
|
|
|
fsevent = { path = "../fsevent" }
|
|
|
|
fuzzy = { path = "../fuzzy" }
|
|
|
|
gpui = { path = "../gpui" }
|
2021-10-20 23:51:40 +03:00
|
|
|
language = { path = "../language" }
|
2021-10-21 17:26:37 +03:00
|
|
|
lsp = { path = "../lsp" }
|
|
|
|
rpc = { path = "../rpc" }
|
2021-10-05 01:36:52 +03:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
|
|
|
util = { path = "../util" }
|
|
|
|
anyhow = "1.0.38"
|
|
|
|
async-trait = "0.1"
|
|
|
|
futures = "0.3"
|
2021-10-04 22:07:35 +03:00
|
|
|
ignore = "0.4"
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
libc = "0.2"
|
|
|
|
log = "0.4"
|
|
|
|
parking_lot = "0.11.1"
|
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_json = { version = "1.0.64", features = ["preserve_order"] }
|
|
|
|
smol = "1.2.5"
|
|
|
|
toml = "0.5"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-10-05 03:14:21 +03:00
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2021-12-14 03:35:32 +03:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2021-10-26 01:28:40 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2021-10-20 23:51:40 +03:00
|
|
|
language = { path = "../language", features = ["test-support"] }
|
2021-10-26 01:28:40 +03:00
|
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
2021-10-04 22:07:35 +03:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|
2021-10-04 22:28:00 +03:00
|
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
2021-10-05 01:36:52 +03:00
|
|
|
rand = "0.8.3"
|
2021-11-03 03:41:01 +03:00
|
|
|
simplelog = "0.9"
|
2021-10-05 01:36:52 +03:00
|
|
|
tempdir = { version = "0.3.7" }
|
2021-10-26 07:42:30 +03:00
|
|
|
unindent = "0.1.7"
|