diff options
author | Aleksey Kladov <[email protected]> | 2021-03-09 19:30:58 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2021-03-09 19:30:58 +0000 |
commit | 842d8ad9c8ff4537c545babc5a461811fe870f14 (patch) | |
tree | 83755289f98dd4b25186d233b81ee3a4af904561 /crates/hir_def | |
parent | a436863364937633335bba8fe4fd81c8fdc33837 (diff) |
Compilation speed
Diffstat (limited to 'crates/hir_def')
-rw-r--r-- | crates/hir_def/Cargo.toml | 2 |
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" } | |||
28 | syntax = { path = "../syntax", version = "0.0.0" } | 28 | syntax = { path = "../syntax", version = "0.0.0" } |
29 | profile = { path = "../profile", version = "0.0.0" } | 29 | profile = { path = "../profile", version = "0.0.0" } |
30 | hir_expand = { path = "../hir_expand", version = "0.0.0" } | 30 | hir_expand = { path = "../hir_expand", version = "0.0.0" } |
31 | test_utils = { path = "../test_utils", version = "0.0.0" } | ||
32 | mbe = { path = "../mbe", version = "0.0.0" } | 31 | mbe = { path = "../mbe", version = "0.0.0" } |
33 | cfg = { path = "../cfg", version = "0.0.0" } | 32 | cfg = { path = "../cfg", version = "0.0.0" } |
34 | tt = { path = "../tt", version = "0.0.0" } | 33 | tt = { path = "../tt", version = "0.0.0" } |
35 | 34 | ||
36 | [dev-dependencies] | 35 | [dev-dependencies] |
36 | test_utils = { path = "../test_utils" } | ||
37 | expect-test = "1.1" | 37 | expect-test = "1.1" |