rust-analyzer/crates/ra_hir/Cargo.toml

27 lines
586 B
TOML
Raw Normal View History

2018-11-28 00:42:26 +00:00
[package]
edition = "2018"
name = "ra_hir"
version = "0.1.0"
authors = ["rust-analyzer developers"]
2018-11-28 00:42:26 +00:00
[dependencies]
arrayvec = "0.4.10"
2018-11-28 00:42:26 +00:00
log = "0.4.5"
relative-path = "0.4.0"
rustc-hash = "1.0"
parking_lot = "0.7.0"
ena = "0.11"
2019-01-09 16:14:21 +00:00
join_to_string = "0.1.3"
2019-01-25 12:16:50 +00:00
2018-11-28 00:42:26 +00:00
ra_syntax = { path = "../ra_syntax" }
2019-01-04 13:15:50 +00:00
ra_arena = { path = "../ra_arena" }
2018-11-28 00:42:26 +00:00
ra_db = { path = "../ra_db" }
2019-01-31 18:09:43 +00:00
mbe = { path = "../ra_mbe", package = "ra_mbe" }
tt = { path = "../ra_tt", package = "ra_tt" }
2018-11-28 00:42:26 +00:00
test_utils = { path = "../test_utils" }
2019-04-02 14:52:04 +00:00
ra_prof = {path = "../ra_prof" }
[dev-dependencies]
2019-03-05 15:26:36 +00:00
flexi_logger = "0.11.0"
insta = "0.7.0"