aboutsummaryrefslogtreecommitdiff
path: root/crates/ide_db
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/ide_db
parenta436863364937633335bba8fe4fd81c8fdc33837 (diff)
Compilation speed
Diffstat (limited to 'crates/ide_db')
-rw-r--r--crates/ide_db/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide_db/Cargo.toml b/crates/ide_db/Cargo.toml
index 1f855c621..1f7a90d20 100644
--- a/crates/ide_db/Cargo.toml
+++ b/crates/ide_db/Cargo.toml
@@ -24,10 +24,10 @@ syntax = { path = "../syntax", version = "0.0.0" }
24text_edit = { path = "../text_edit", version = "0.0.0" } 24text_edit = { path = "../text_edit", version = "0.0.0" }
25base_db = { path = "../base_db", version = "0.0.0" } 25base_db = { path = "../base_db", version = "0.0.0" }
26profile = { path = "../profile", version = "0.0.0" } 26profile = { path = "../profile", version = "0.0.0" }
27test_utils = { path = "../test_utils", version = "0.0.0" }
28# ide should depend only on the top-level `hir` package. if you need 27# ide should depend only on the top-level `hir` package. if you need
29# something from some `hir_xxx` subpackage, reexport the API via `hir`. 28# something from some `hir_xxx` subpackage, reexport the API via `hir`.
30hir = { path = "../hir", version = "0.0.0" } 29hir = { path = "../hir", version = "0.0.0" }
31 30
32[dev-dependencies] 31[dev-dependencies]
32test_utils = { path = "../test_utils" }
33expect-test = "1.1" 33expect-test = "1.1"