2022-10-11 20:03:36 +00:00
|
|
|
[package]
|
|
|
|
name = "fs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2024-03-05 17:01:17 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2022-10-11 20:03:36 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/fs.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-06 19:41:36 +00:00
|
|
|
collections.workspace = true
|
2024-02-08 16:35:37 +00:00
|
|
|
fsevent.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
rope.workspace = true
|
|
|
|
text.workspace = true
|
|
|
|
util.workspace = true
|
|
|
|
sum_tree.workspace = true
|
2023-05-31 18:02:59 +00:00
|
|
|
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
2024-03-02 00:00:55 +00:00
|
|
|
async-tar.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
async-trait.workspace = true
|
|
|
|
futures.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
tempfile.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
lazy_static.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
smol.workspace = true
|
2023-09-19 20:13:47 +00:00
|
|
|
git2.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
log.workspace = true
|
2022-10-11 22:25:54 +00:00
|
|
|
libc = "0.2"
|
2023-06-27 11:28:50 +00:00
|
|
|
time.workspace = true
|
2022-10-11 22:25:54 +00:00
|
|
|
|
2024-02-22 19:22:12 +00:00
|
|
|
gpui = { workspace = true, optional = true }
|
2023-10-02 22:20:47 +00:00
|
|
|
|
2024-01-29 20:18:10 +00:00
|
|
|
[target.'cfg(not(target_os = "macos"))'.dependencies]
|
|
|
|
notify = "6.1.1"
|
|
|
|
|
2024-02-22 19:22:12 +00:00
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
|
|
windows-sys = { version = "0.52", features = [
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_Storage_FileSystem",
|
|
|
|
] }
|
|
|
|
|
2023-06-14 00:16:11 +00:00
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
2023-06-14 00:16:11 +00:00
|
|
|
|
2022-10-11 22:25:54 +00:00
|
|
|
[features]
|
2023-10-02 22:20:47 +00:00
|
|
|
test-support = ["gpui/test-support"]
|