rust/crates/ra_analysis/Cargo.toml

21 lines
419 B
TOML
Raw Normal View History

2018-08-10 15:07:43 +03:00
[package]
2018-10-15 20:15:53 +03:00
edition = "2018"
2018-09-16 12:54:24 +03:00
name = "ra_analysis"
2018-08-10 15:07:43 +03:00
version = "0.1.0"
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
[dependencies]
2018-08-28 18:22:52 +03:00
relative-path = "0.3.7"
2018-08-10 21:13:39 +03:00
log = "0.4.2"
2018-08-10 15:07:43 +03:00
parking_lot = "0.6.3"
once_cell = "0.1.5"
2018-08-13 19:28:34 +03:00
rayon = "1.0.2"
2018-08-25 23:50:16 +03:00
fst = "0.3.1"
2018-09-16 12:54:24 +03:00
ra_syntax = { path = "../ra_syntax" }
ra_editor = { path = "../ra_editor" }
2018-10-20 18:43:02 +03:00
salsa = "0.6.0"
2018-10-15 21:25:54 +03:00
rustc-hash = "1.0"
2018-08-17 16:04:34 +03:00
[dev-dependencies]
2018-08-25 14:26:34 +03:00
test_utils = { path = "../test_utils" }