rust/crates/ra_hir/Cargo.toml

39 lines
1.2 KiB
TOML
Raw Normal View History

2018-11-28 03:42:26 +03:00
[package]
edition = "2018"
name = "ra_hir"
version = "0.1.0"
authors = ["rust-analyzer developers"]
2018-11-28 03:42:26 +03:00
2019-11-17 18:35:05 +03:00
[lib]
doctest = false
2018-11-28 03:42:26 +03:00
[dependencies]
2019-10-17 18:06:01 +03:00
arrayvec = "0.5.1"
2018-11-28 03:42:26 +03:00
log = "0.4.5"
rustc-hash = "1.0"
parking_lot = "0.10.0"
2019-06-20 15:09:39 -04:00
ena = "0.13"
2019-09-01 23:18:15 +03:00
once_cell = "1.0.1"
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" }
ra_cfg = { path = "../ra_cfg" }
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" }
2019-10-29 14:59:55 +03:00
hir_expand = { path = "../ra_hir_expand", package = "ra_hir_expand" }
2019-10-30 12:27:54 +03:00
hir_def = { path = "../ra_hir_def", package = "ra_hir_def" }
2019-11-26 14:35:23 +03:00
hir_ty = { path = "../ra_hir_ty", package = "ra_hir_ty" }
2018-11-28 03:42:26 +03:00
test_utils = { path = "../test_utils" }
ra_prof = { path = "../ra_prof" }
2019-11-26 11:45:12 +03:00
# https://github.com/rust-lang/chalk/pull/294
chalk-solve = { git = "https://github.com/jackh726/chalk.git", rev = "095cd38a4f16337913bba487f2055b9ca0179f30" }
chalk-rust-ir = { git = "https://github.com/jackh726/chalk.git", rev = "095cd38a4f16337913bba487f2055b9ca0179f30" }
chalk-ir = { git = "https://github.com/jackh726/chalk.git", rev = "095cd38a4f16337913bba487f2055b9ca0179f30" }
lalrpop-intern = "0.15.1"
[dev-dependencies]
2019-10-24 10:35:22 -04:00
insta = "0.12.0"