2022-10-11 23:03:36 +03:00
|
|
|
[package]
|
|
|
|
name = "fs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2022-10-11 23:03:36 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/fs.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
collections = { path = "../collections" }
|
2022-10-12 01:25:54 +03:00
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
lsp = { path = "../lsp" }
|
|
|
|
rope = { path = "../rope" }
|
2023-08-30 23:14:06 +03:00
|
|
|
text = { path = "../text" }
|
2022-10-12 01:25:54 +03:00
|
|
|
util = { path = "../util" }
|
2023-05-10 18:49:30 +03:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
2023-05-31 21:02:59 +03:00
|
|
|
rpc = { path = "../rpc" }
|
|
|
|
|
2023-04-25 03:41:55 +03:00
|
|
|
anyhow.workspace = true
|
|
|
|
async-trait.workspace = true
|
|
|
|
futures.workspace = true
|
2022-10-12 05:18:29 +03:00
|
|
|
tempfile = "3"
|
2022-10-12 01:25:54 +03:00
|
|
|
fsevent = { path = "../fsevent" }
|
2023-04-25 03:41:55 +03:00
|
|
|
lazy_static.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
smol.workspace = true
|
|
|
|
regex.workspace = true
|
2022-10-12 01:25:54 +03:00
|
|
|
git2 = { version = "0.15", default-features = false }
|
2023-04-25 03:41:55 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
log.workspace = true
|
2022-10-12 01:25:54 +03:00
|
|
|
libc = "0.2"
|
2023-06-27 14:28:50 +03:00
|
|
|
time.workspace = true
|
2022-10-12 01:25:54 +03:00
|
|
|
|
2023-06-14 03:16:11 +03:00
|
|
|
[dev-dependencies]
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
|
2022-10-12 01:25:54 +03:00
|
|
|
[features]
|
|
|
|
test-support = []
|