rust-analyzer/crates/ra_vfs/Cargo.toml

23 lines
437 B
TOML
Raw Normal View History

2018-12-18 09:29:14 +00: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 20:23:31 +00:00
crossbeam-channel = "0.3.5"
2018-12-18 10:18:55 +00:00
log = "0.4.6"
notify = "4.0.7"
2019-01-06 14:05:12 +00:00
drop_bomb = "0.1.0"
parking_lot = "0.7.0"
2018-12-18 10:18:55 +00:00
thread_worker = { path = "../thread_worker" }
2019-01-04 13:01:06 +00:00
ra_arena = { path = "../ra_arena" }
2018-12-18 13:38:05 +00:00
[dev-dependencies]
tempfile = "3"
2019-01-06 17:36:22 +00:00
flexi_logger = "0.10.0"