aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/Cargo.toml
blob: de2c2dbec672ff870e716e53b83e27bf624e0bfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
edition = "2018"
name = "ra_hir"
version = "0.1.0"
authors = ["rust-analyzer developers"]

[dependencies]
arrayvec = "0.4.10"
log = "0.4.5"
relative-path = "0.4.0"
rustc-hash = "1.0"
parking_lot = "0.8.0"
ena = "0.13"
once_cell = "0.2"

ra_syntax = { path = "../ra_syntax" }
ra_arena = { path = "../ra_arena" }
ra_db = { path = "../ra_db" }
mbe = { path = "../ra_mbe", package = "ra_mbe" }
tt = { path = "../ra_tt", package = "ra_tt" }
test_utils = { path = "../test_utils" }
ra_prof = { path = "../ra_prof" }

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" }
lalrpop-intern = "0.15.1"

[dev-dependencies]
insta = "0.8.1"