diff options
Diffstat (limited to 'crates/vfs-notify/Cargo.toml')
-rw-r--r-- | crates/vfs-notify/Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/crates/vfs-notify/Cargo.toml b/crates/vfs-notify/Cargo.toml new file mode 100644 index 000000000..4737a52a7 --- /dev/null +++ b/crates/vfs-notify/Cargo.toml | |||
@@ -0,0 +1,17 @@ | |||
1 | [package] | ||
2 | name = "vfs-notify" | ||
3 | version = "0.1.0" | ||
4 | authors = ["rust-analyzer developers"] | ||
5 | edition = "2018" | ||
6 | |||
7 | [dependencies] | ||
8 | log = "0.4.8" | ||
9 | rustc-hash = "1.0" | ||
10 | jod-thread = "0.1.0" | ||
11 | walkdir = "2.3.1" | ||
12 | globset = "0.4.5" | ||
13 | crossbeam-channel = "0.4.0" | ||
14 | notify = "5.0.0-pre.3" | ||
15 | |||
16 | vfs = { path = "../vfs" } | ||
17 | paths = { path = "../paths" } | ||