rust-analyzer/crates/ra_hir/Cargo.toml

33 lines
1,022 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]
2019-10-17 15:06:01 +00:00
arrayvec = "0.5.1"
2018-11-28 00:42:26 +00:00
log = "0.4.5"
2019-10-15 14:44:26 +00:00
relative-path = "1.0.0"
2018-11-28 00:42:26 +00:00
rustc-hash = "1.0"
2019-07-15 19:07:11 +00:00
parking_lot = "0.9.0"
2019-06-20 19:09:39 +00:00
ena = "0.13"
2019-09-01 20:18:15 +00:00
once_cell = "1.0.1"
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" }
ra_cfg = { path = "../ra_cfg" }
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" }
2019-10-29 08:15:51 +00:00
hir_def = { path = "../ra_hir_def", package = "ra_hir_def" }
2018-11-28 00:42:26 +00:00
test_utils = { path = "../test_utils" }
ra_prof = { path = "../ra_prof" }
chalk-solve = { git = "https://github.com/rust-lang/chalk.git", rev = "1e5c1929364dfbb7c0c7ac0956b8250abe7c2cae" }
chalk-rust-ir = { git = "https://github.com/rust-lang/chalk.git", rev = "1e5c1929364dfbb7c0c7ac0956b8250abe7c2cae" }
chalk-ir = { git = "https://github.com/rust-lang/chalk.git", rev = "1e5c1929364dfbb7c0c7ac0956b8250abe7c2cae" }
lalrpop-intern = "0.15.1"
[dev-dependencies]
2019-10-24 14:35:22 +00:00
insta = "0.12.0"