rust/crates/ra_hir/Cargo.toml

33 lines
871 B
TOML
Raw Normal View History

2018-11-28 01:42:26 +01:00
[package]
edition = "2018"
name = "ra_hir"
version = "0.1.0"
authors = ["rust-analyzer developers"]
2018-11-28 01:42:26 +01:00
[dependencies]
arrayvec = "0.4.10"
2018-11-28 01:42:26 +01:00
log = "0.4.5"
relative-path = "0.4.0"
rustc-hash = "1.0"
2019-05-30 11:02:30 +02:00
parking_lot = "0.8.0"
ena = "0.11"
2019-01-09 17:14:21 +01:00
join_to_string = "0.1.3"
2019-05-26 14:10:05 +02:00
either = "1.5.2"
2019-05-30 14:03:58 +02:00
once_cell = "0.2"
2019-01-25 13:16:50 +01:00
2018-11-28 01:42:26 +01:00
ra_syntax = { path = "../ra_syntax" }
2019-01-04 14:15:50 +01:00
ra_arena = { path = "../ra_arena" }
2018-11-28 01:42:26 +01:00
ra_db = { path = "../ra_db" }
2019-01-31 19:09:43 +01:00
mbe = { path = "../ra_mbe", package = "ra_mbe" }
tt = { path = "../ra_tt", package = "ra_tt" }
2018-11-28 01:42:26 +01:00
test_utils = { path = "../test_utils" }
ra_prof = { path = "../ra_prof" }
chalk-solve = { git = "https://github.com/flodiebold/chalk.git", branch = "fuel" }
chalk-rust-ir = { git = "https://github.com/flodiebold/chalk.git", branch = "fuel" }
chalk-ir = { git = "https://github.com/flodiebold/chalk.git", branch = "fuel" }
[dev-dependencies]
2019-03-05 16:26:36 +01:00
flexi_logger = "0.11.0"
2019-05-21 12:21:54 +02:00
insta = "0.8.1"