rust/crates/ra_vfs/Cargo.toml

23 lines
536 B
TOML
Raw Normal View History

2018-12-18 10:29:14 +01:00
[package]
edition = "2018"
name = "ra_vfs"
version = "0.1.0"
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
[dependencies]
walkdir = "2.2.7"
relative-path = "0.4.0"
rustc-hash = "1.0"
2018-12-30 21:23:31 +01:00
crossbeam-channel = "0.3.5"
2018-12-18 11:18:55 +01:00
log = "0.4.6"
2019-01-15 17:45:56 +01:00
# until https://github.com/passcod/notify/issues/169 is fixed
notify = { git = "https://github.com/vemoo/notify/", branch = "v4-legacy" }
2019-01-06 15:05:12 +01:00
drop_bomb = "0.1.0"
2018-12-18 11:18:55 +01:00
thread_worker = { path = "../thread_worker" }
2019-01-04 14:01:06 +01:00
ra_arena = { path = "../ra_arena" }
2018-12-18 14:38:05 +01:00
[dev-dependencies]
tempfile = "3"
2019-01-06 18:36:22 +01:00
flexi_logger = "0.10.0"