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
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
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
|
|
|
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
|
|
|
|
2023-04-25 03:41:55 +03:00
|
|
|
anyhow.workspace = true
|
|
|
|
async-trait.workspace = true
|
|
|
|
futures.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
tempfile.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
lazy_static.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
smol.workspace = true
|
|
|
|
regex.workspace = true
|
2023-09-19 23:13:47 +03:00
|
|
|
git2.workspace = true
|
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-10-03 01:20:47 +03:00
|
|
|
gpui = { path = "../gpui", optional = true}
|
|
|
|
|
2024-01-29 23:18:10 +03:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
|
|
fsevent = { path = "../fsevent" }
|
|
|
|
|
|
|
|
[target.'cfg(not(target_os = "macos"))'.dependencies]
|
|
|
|
notify = "6.1.1"
|
|
|
|
|
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]
|
2023-10-03 01:20:47 +03:00
|
|
|
test-support = ["gpui/test-support"]
|