rust-analyzer/crates/ra_analysis/Cargo.toml

20 lines
486 B
TOML
Raw Normal View History

2018-08-10 12:07:43 +00:00
[package]
2018-10-15 17:15:53 +00:00
edition = "2018"
2018-09-16 09:54:24 +00:00
name = "ra_analysis"
2018-08-10 12:07:43 +00:00
version = "0.1.0"
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
[dependencies]
2018-10-25 13:03:49 +00:00
log = "0.4.5"
relative-path = "0.4.0"
2018-08-13 16:28:34 +00:00
rayon = "1.0.2"
2018-08-25 20:50:16 +00:00
fst = "0.3.1"
2018-11-01 12:29:23 +00:00
salsa = "0.8.0"
2018-10-15 18:25:54 +00:00
rustc-hash = "1.0"
2018-11-18 12:44:24 +00:00
parking_lot = "0.6.4"
2018-11-25 21:46:13 +00:00
id-arena = { git = "https://github.com/fitzgen/id-arena/", rev = "43ecd67" }
ra_syntax = { path = "../ra_syntax" }
ra_editor = { path = "../ra_editor" }
ra_db = { path = "../ra_db" }
2018-08-25 11:26:34 +00:00
test_utils = { path = "../test_utils" }