aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_expand
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_expand
parenta436863364937633335bba8fe4fd81c8fdc33837 (diff)
Compilation speed
Diffstat (limited to 'crates/hir_expand')
-rw-r--r--crates/hir_expand/Cargo.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/crates/hir_expand/Cargo.toml b/crates/hir_expand/Cargo.toml
index 5271110d2..76cb03126 100644
--- a/crates/hir_expand/Cargo.toml
+++ b/crates/hir_expand/Cargo.toml
@@ -21,4 +21,6 @@ parser = { path = "../parser", version = "0.0.0" }
21profile = { path = "../profile", version = "0.0.0" } 21profile = { path = "../profile", version = "0.0.0" }
22tt = { path = "../tt", version = "0.0.0" } 22tt = { path = "../tt", version = "0.0.0" }
23mbe = { path = "../mbe", version = "0.0.0" } 23mbe = { path = "../mbe", version = "0.0.0" }
24test_utils = { path = "../test_utils", version = "0.0.0" } 24
25[dev-dependencies]
26test_utils = { path = "../test_utils" }