aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_ty/Cargo.toml
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-11-27 18:23:31 +0000
committerAleksey Kladov <[email protected]>2019-11-27 18:26:49 +0000
commit47ec2ceb12df756b3482ddd2b1947e4b38f23706 (patch)
treeb68c3da4bb47e0a285968319bfb33b44cbfd5546 /crates/ra_hir_ty/Cargo.toml
parenta87579500a2c35597071efd0ad6983927f0c1815 (diff)
prune deps
Diffstat (limited to 'crates/ra_hir_ty/Cargo.toml')
-rw-r--r--crates/ra_hir_ty/Cargo.toml11
1 files changed, 5 insertions, 6 deletions
diff --git a/crates/ra_hir_ty/Cargo.toml b/crates/ra_hir_ty/Cargo.toml
index 199afff49..429242870 100644
--- a/crates/ra_hir_ty/Cargo.toml
+++ b/crates/ra_hir_ty/Cargo.toml
@@ -9,18 +9,17 @@ doctest = false
9 9
10[dependencies] 10[dependencies]
11arrayvec = "0.5.1" 11arrayvec = "0.5.1"
12ena = "0.13"
12log = "0.4.5" 13log = "0.4.5"
13rustc-hash = "1.0" 14rustc-hash = "1.0"
14parking_lot = "0.10.0"
15ena = "0.13"
16 15
17ra_syntax = { path = "../ra_syntax" } 16hir_def = { path = "../ra_hir_def", package = "ra_hir_def" }
17hir_expand = { path = "../ra_hir_expand", package = "ra_hir_expand" }
18ra_arena = { path = "../ra_arena" } 18ra_arena = { path = "../ra_arena" }
19ra_db = { path = "../ra_db" } 19ra_db = { path = "../ra_db" }
20hir_expand = { path = "../ra_hir_expand", package = "ra_hir_expand" }
21hir_def = { path = "../ra_hir_def", package = "ra_hir_def" }
22test_utils = { path = "../test_utils" }
23ra_prof = { path = "../ra_prof" } 20ra_prof = { path = "../ra_prof" }
21ra_syntax = { path = "../ra_syntax" }
22test_utils = { path = "../test_utils" }
24 23
25# https://github.com/rust-lang/chalk/pull/294 24# https://github.com/rust-lang/chalk/pull/294
26chalk-solve = { git = "https://github.com/jackh726/chalk.git", rev = "095cd38a4f16337913bba487f2055b9ca0179f30" } 25chalk-solve = { git = "https://github.com/jackh726/chalk.git", rev = "095cd38a4f16337913bba487f2055b9ca0179f30" }