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