aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_def/Cargo.toml
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2021-03-09 19:30:58 +0000
committerAleksey Kladov <[email protected]>2021-03-09 19:30:58 +0000
commit842d8ad9c8ff4537c545babc5a461811fe870f14 (patch)
tree83755289f98dd4b25186d233b81ee3a4af904561 /crates/hir_def/Cargo.toml
parenta436863364937633335bba8fe4fd81c8fdc33837 (diff)
Compilation speed
Diffstat (limited to 'crates/hir_def/Cargo.toml')
-rw-r--r--crates/hir_def/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_def/Cargo.toml b/crates/hir_def/Cargo.toml
index 2f07b6d01..c2d99280f 100644
--- a/crates/hir_def/Cargo.toml
+++ b/crates/hir_def/Cargo.toml
@@ -28,10 +28,10 @@ base_db = { path = "../base_db", version = "0.0.0" }
28syntax = { path = "../syntax", version = "0.0.0" } 28syntax = { path = "../syntax", version = "0.0.0" }
29profile = { path = "../profile", version = "0.0.0" } 29profile = { path = "../profile", version = "0.0.0" }
30hir_expand = { path = "../hir_expand", version = "0.0.0" } 30hir_expand = { path = "../hir_expand", version = "0.0.0" }
31test_utils = { path = "../test_utils", version = "0.0.0" }
32mbe = { path = "../mbe", version = "0.0.0" } 31mbe = { path = "../mbe", version = "0.0.0" }
33cfg = { path = "../cfg", version = "0.0.0" } 32cfg = { path = "../cfg", version = "0.0.0" }
34tt = { path = "../tt", version = "0.0.0" } 33tt = { path = "../tt", version = "0.0.0" }
35 34
36[dev-dependencies] 35[dev-dependencies]
36test_utils = { path = "../test_utils" }
37expect-test = "1.1" 37expect-test = "1.1"