rust/crates/ra_analysis/Cargo.toml

21 lines
502 B
TOML
Raw Normal View History

2018-08-10 14:07:43 +02:00
[package]
2018-10-15 19:15:53 +02:00
edition = "2018"
2018-09-16 11:54:24 +02:00
name = "ra_analysis"
2018-08-10 14:07:43 +02:00
version = "0.1.0"
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
[dependencies]
2018-10-25 15:03:49 +02:00
log = "0.4.5"
relative-path = "0.4.0"
2018-08-13 18:28:34 +02:00
rayon = "1.0.2"
2018-08-25 22:50:16 +02:00
fst = "0.3.1"
2018-11-01 13:29:23 +01:00
salsa = "0.8.0"
2018-10-15 20:25:54 +02:00
rustc-hash = "1.0"
parking_lot = "0.7.0"
ra_syntax = { path = "../ra_syntax" }
ra_editor = { path = "../ra_editor" }
ra_text_edit = { path = "../ra_text_edit" }
ra_db = { path = "../ra_db" }
2018-11-28 02:09:44 +01:00
hir = { path = "../ra_hir", package = "ra_hir" }
2018-08-25 13:26:34 +02:00
test_utils = { path = "../test_utils" }