]> git.lizzy.rs Git - rust.git/commitdiff
Compilation speed
authorAleksey Kladov <aleksey.kladov@gmail.com>
Tue, 9 Mar 2021 19:30:58 +0000 (22:30 +0300)
committerAleksey Kladov <aleksey.kladov@gmail.com>
Tue, 9 Mar 2021 19:30:58 +0000 (22:30 +0300)
crates/hir_def/Cargo.toml
crates/hir_expand/Cargo.toml
crates/hir_ty/Cargo.toml
crates/ide/Cargo.toml
crates/ide_assists/Cargo.toml
crates/ide_completion/Cargo.toml
crates/ide_db/Cargo.toml
crates/ide_ssr/Cargo.toml
crates/mbe/Cargo.toml
crates/proc_macro_srv/Cargo.toml

index 2f07b6d01a80d2d12a9be2f6cfcfb154c37f9cf7..c2d99280f8ee55c9dd543ef605f5bdefac2fa1de 100644 (file)
@@ -28,10 +28,10 @@ base_db = { path = "../base_db", version = "0.0.0" }
 syntax = { path = "../syntax", version = "0.0.0" }
 profile = { path = "../profile", version = "0.0.0" }
 hir_expand = { path = "../hir_expand", version = "0.0.0" }
-test_utils = { path = "../test_utils", version = "0.0.0" }
 mbe = { path = "../mbe", version = "0.0.0" }
 cfg = { path = "../cfg", version = "0.0.0" }
 tt = { path = "../tt", version = "0.0.0" }
 
 [dev-dependencies]
+test_utils = { path = "../test_utils" }
 expect-test = "1.1"
index 5271110d241e8b2d7a9847fd3a320e07751f503a..76cb03126e51098742b296525b7ffc017817ff23 100644 (file)
@@ -21,4 +21,6 @@ parser = { path = "../parser", version = "0.0.0" }
 profile = { path = "../profile", version = "0.0.0" }
 tt = { path = "../tt", version = "0.0.0" }
 mbe = { path = "../mbe", version = "0.0.0" }
-test_utils = { path = "../test_utils", version = "0.0.0" }
+
+[dev-dependencies]
+test_utils = { path = "../test_utils" }
index 6131ebee810370194624f7a16d51222909b9a23a..b9c93f56fb58c88bc8c5ed18462821f042cd6010 100644 (file)
@@ -29,9 +29,9 @@ hir_expand = { path = "../hir_expand", version = "0.0.0" }
 base_db = { path = "../base_db", version = "0.0.0" }
 profile = { path = "../profile", version = "0.0.0" }
 syntax = { path = "../syntax", version = "0.0.0" }
-test_utils = { path = "../test_utils", version = "0.0.0" }
 
 [dev-dependencies]
+test_utils = { path = "../test_utils"  }
 expect-test = "1.1"
 tracing = "0.1"
 tracing-subscriber = { version = "0.2", default-features = false, features = ["env-filter", "registry"] }
index f7c5efaf331aee9032f73855e5b81d08f2e839d3..107bd84328b1597c2420e60bb3b9cc77243ec230 100644 (file)
@@ -27,7 +27,6 @@ text_edit = { path = "../text_edit", version = "0.0.0" }
 ide_db = { path = "../ide_db", version = "0.0.0" }
 cfg = { path = "../cfg", version = "0.0.0" }
 profile = { path = "../profile", version = "0.0.0" }
-test_utils = { path = "../test_utils", version = "0.0.0" }
 ide_assists = { path = "../ide_assists", version = "0.0.0" }
 ide_ssr = { path = "../ide_ssr", version = "0.0.0" }
 ide_completion = { path = "../ide_completion", version = "0.0.0" }
@@ -37,4 +36,5 @@ ide_completion = { path = "../ide_completion", version = "0.0.0" }
 hir = { path = "../hir", version = "0.0.0" }
 
 [dev-dependencies]
+test_utils = { path = "../test_utils" }
 expect-test = "1.1"
index 3bf0099a92c5e9c45dc82decfdf6201c05c7973c..dd9aa27c6c2c650b4436fe145d2e2b72f084f033 100644 (file)
@@ -21,7 +21,7 @@ text_edit = { path = "../text_edit", version = "0.0.0" }
 profile = { path = "../profile", version = "0.0.0" }
 ide_db = { path = "../ide_db", version = "0.0.0" }
 hir = { path = "../hir", version = "0.0.0" }
-test_utils = { path = "../test_utils", version = "0.0.0" }
 
 [dev-dependencies]
+test_utils = { path = "../test_utils" }
 expect-test = "1.1"
index 84aa40736d7d4490f3016090d050cead7432aaa0..585ecca506fc9ffa8da7b98b45f80ac678e15227 100644 (file)
@@ -22,11 +22,11 @@ text_edit = { path = "../text_edit", version = "0.0.0" }
 base_db = { path = "../base_db", version = "0.0.0" }
 ide_db = { path = "../ide_db", version = "0.0.0" }
 profile = { path = "../profile", version = "0.0.0" }
-test_utils = { path = "../test_utils", version = "0.0.0" }
 
 # completions crate should depend only on the top-level `hir` package. if you need
 # something from some `hir_xxx` subpackage, reexport the API via `hir`.
 hir = { path = "../hir", version = "0.0.0" }
 
 [dev-dependencies]
+test_utils = { path = "../test_utils" }
 expect-test = "1.1"
index 1f855c6214d64b2b1b4a2ff5f9d938e768ced68e..1f7a90d2030dc66f104828c351c31d5269e3667d 100644 (file)
@@ -24,10 +24,10 @@ syntax = { path = "../syntax", version = "0.0.0" }
 text_edit = { path = "../text_edit", version = "0.0.0" }
 base_db = { path = "../base_db", version = "0.0.0" }
 profile = { path = "../profile", version = "0.0.0" }
-test_utils = { path = "../test_utils", version = "0.0.0" }
 # ide should depend only on the top-level `hir` package. if you need
 # something from some `hir_xxx` subpackage, reexport the API via `hir`.
 hir = { path = "../hir", version = "0.0.0" }
 
 [dev-dependencies]
+test_utils = { path = "../test_utils" }
 expect-test = "1.1"
index 315691f40c6287985a41abc870979b42c751189e..8c31df13a00bcdd0cb24207036b7c56b9474fc47 100644 (file)
@@ -19,7 +19,7 @@ text_edit = { path = "../text_edit", version = "0.0.0" }
 syntax = { path = "../syntax", version = "0.0.0" }
 ide_db = { path = "../ide_db", version = "0.0.0" }
 hir = { path = "../hir", version = "0.0.0" }
-test_utils = { path = "../test_utils", version = "0.0.0" }
 
 [dev-dependencies]
+test_utils = { path = "../test_utils" }
 expect-test = "1.1"
index c7d5e39fa3148d7a6dfd56fe5226e6c43d60de6c..1392142072a74639928bbed8b35c5246a6365454 100644 (file)
@@ -18,8 +18,8 @@ log = "0.4.8"
 syntax = { path = "../syntax", version = "0.0.0" }
 parser = { path = "../parser", version = "0.0.0" }
 tt = { path = "../tt", version = "0.0.0" }
-test_utils = { path = "../test_utils", version = "0.0.0" }
 stdx = { path = "../stdx", version = "0.0.0" }
 
 [dev-dependencies]
 profile = { path = "../profile" }
+test_utils = { path = "../test_utils" }
index 4c1b3036ae98644c0b25fa34766f2038b2eaa117..63b3f15322382520be25f612b51ceca1aad23a06 100644 (file)
@@ -17,9 +17,9 @@ memmap2 = "0.2.0"
 tt = { path = "../tt", version = "0.0.0" }
 mbe = { path = "../mbe", version = "0.0.0" }
 proc_macro_api = { path = "../proc_macro_api", version = "0.0.0" }
-test_utils = { path = "../test_utils", version = "0.0.0" }
 
 [dev-dependencies]
+test_utils = { path = "../test_utils" }
 cargo_metadata = "0.13"
 
 # used as proc macro test targets