2018-11-28 03:42:26 +03:00
|
|
|
[package]
|
|
|
|
edition = "2018"
|
|
|
|
name = "ra_hir"
|
|
|
|
version = "0.1.0"
|
2019-02-11 10:20:04 +02:00
|
|
|
authors = ["rust-analyzer developers"]
|
2018-11-28 03:42:26 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2018-12-27 12:32:18 +00:00
|
|
|
arrayvec = "0.4.10"
|
2018-11-28 03:42:26 +03:00
|
|
|
log = "0.4.5"
|
|
|
|
relative-path = "0.4.0"
|
|
|
|
rustc-hash = "1.0"
|
2019-05-30 12:02:30 +03:00
|
|
|
parking_lot = "0.8.0"
|
2018-12-26 17:00:42 +01:00
|
|
|
ena = "0.11"
|
2019-01-09 19:14:21 +03:00
|
|
|
join_to_string = "0.1.3"
|
2019-05-26 20:10:05 +08:00
|
|
|
either = "1.5.2"
|
2019-05-30 15:03:58 +03:00
|
|
|
once_cell = "0.2"
|
2019-01-25 15:16:50 +03:00
|
|
|
|
2018-11-28 03:42:26 +03:00
|
|
|
ra_syntax = { path = "../ra_syntax" }
|
2019-01-04 16:15:50 +03:00
|
|
|
ra_arena = { path = "../ra_arena" }
|
2018-11-28 03:42:26 +03:00
|
|
|
ra_db = { path = "../ra_db" }
|
2019-01-31 21:09:43 +03:00
|
|
|
mbe = { path = "../ra_mbe", package = "ra_mbe" }
|
|
|
|
tt = { path = "../ra_tt", package = "ra_tt" }
|
2018-11-28 03:42:26 +03:00
|
|
|
test_utils = { path = "../test_utils" }
|
2019-04-20 12:34:36 +02:00
|
|
|
ra_prof = { path = "../ra_prof" }
|
|
|
|
|
2019-05-20 18:31:12 +02:00
|
|
|
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" }
|
2018-12-23 17:13:11 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-03-05 10:26:36 -05:00
|
|
|
flexi_logger = "0.11.0"
|
2019-05-21 13:21:54 +03:00
|
|
|
insta = "0.8.1"
|