rust/crates/ra_hir_ty/Cargo.toml

30 lines
910 B
TOML
Raw Normal View History

2019-11-26 12:35:23 +01:00
[package]
edition = "2018"
name = "ra_hir_ty"
version = "0.1.0"
authors = ["rust-analyzer developers"]
[lib]
doctest = false
[dependencies]
2019-11-27 15:46:02 +01:00
arrayvec = "0.5.1"
2020-02-18 14:57:41 +01:00
ena = "0.13.1"
log = "0.4.8"
rustc-hash = "1.1.0"
2019-11-26 12:35:23 +01:00
2019-11-27 19:23:31 +01:00
hir_def = { path = "../ra_hir_def", package = "ra_hir_def" }
hir_expand = { path = "../ra_hir_expand", package = "ra_hir_expand" }
2019-11-26 12:35:23 +01:00
ra_arena = { path = "../ra_arena" }
ra_db = { path = "../ra_db" }
ra_prof = { path = "../ra_prof" }
2019-11-27 19:23:31 +01:00
ra_syntax = { path = "../ra_syntax" }
test_utils = { path = "../test_utils" }
2019-11-26 12:35:23 +01:00
2020-03-02 23:01:16 +01:00
chalk-solve = { git = "https://github.com/rust-lang/chalk.git", rev = "177d71340acc7a7204a33115fc63075d86452179" }
chalk-rust-ir = { git = "https://github.com/rust-lang/chalk.git", rev = "177d71340acc7a7204a33115fc63075d86452179" }
chalk-ir = { git = "https://github.com/rust-lang/chalk.git", rev = "177d71340acc7a7204a33115fc63075d86452179" }
2019-11-26 12:35:23 +01:00
[dev-dependencies]
2020-02-18 14:57:41 +01:00
insta = "0.13.1"