Skip to content

Commit 4bb120c

Browse files
bors[bot]matklad
andauthored
Merge #7949
7949: Compilation speed r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
2 parents a436863 + 842d8ad commit 4bb120c

File tree

10 files changed

+12
-10
lines changed

10 files changed

+12
-10
lines changed

crates/hir_def/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ base_db = { path = "../base_db", version = "0.0.0" }
2828
syntax = { path = "../syntax", version = "0.0.0" }
2929
profile = { path = "../profile", version = "0.0.0" }
3030
hir_expand = { path = "../hir_expand", version = "0.0.0" }
31-
test_utils = { path = "../test_utils", version = "0.0.0" }
3231
mbe = { path = "../mbe", version = "0.0.0" }
3332
cfg = { path = "../cfg", version = "0.0.0" }
3433
tt = { path = "../tt", version = "0.0.0" }
3534

3635
[dev-dependencies]
36+
test_utils = { path = "../test_utils" }
3737
expect-test = "1.1"

crates/hir_expand/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@ parser = { path = "../parser", version = "0.0.0" }
2121
profile = { path = "../profile", version = "0.0.0" }
2222
tt = { path = "../tt", version = "0.0.0" }
2323
mbe = { path = "../mbe", version = "0.0.0" }
24-
test_utils = { path = "../test_utils", version = "0.0.0" }
24+
25+
[dev-dependencies]
26+
test_utils = { path = "../test_utils" }

crates/hir_ty/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ hir_expand = { path = "../hir_expand", version = "0.0.0" }
2929
base_db = { path = "../base_db", version = "0.0.0" }
3030
profile = { path = "../profile", version = "0.0.0" }
3131
syntax = { path = "../syntax", version = "0.0.0" }
32-
test_utils = { path = "../test_utils", version = "0.0.0" }
3332

3433
[dev-dependencies]
34+
test_utils = { path = "../test_utils" }
3535
expect-test = "1.1"
3636
tracing = "0.1"
3737
tracing-subscriber = { version = "0.2", default-features = false, features = ["env-filter", "registry"] }

crates/ide/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ text_edit = { path = "../text_edit", version = "0.0.0" }
2727
ide_db = { path = "../ide_db", version = "0.0.0" }
2828
cfg = { path = "../cfg", version = "0.0.0" }
2929
profile = { path = "../profile", version = "0.0.0" }
30-
test_utils = { path = "../test_utils", version = "0.0.0" }
3130
ide_assists = { path = "../ide_assists", version = "0.0.0" }
3231
ide_ssr = { path = "../ide_ssr", version = "0.0.0" }
3332
ide_completion = { path = "../ide_completion", version = "0.0.0" }
@@ -37,4 +36,5 @@ ide_completion = { path = "../ide_completion", version = "0.0.0" }
3736
hir = { path = "../hir", version = "0.0.0" }
3837

3938
[dev-dependencies]
39+
test_utils = { path = "../test_utils" }
4040
expect-test = "1.1"

crates/ide_assists/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ text_edit = { path = "../text_edit", version = "0.0.0" }
2121
profile = { path = "../profile", version = "0.0.0" }
2222
ide_db = { path = "../ide_db", version = "0.0.0" }
2323
hir = { path = "../hir", version = "0.0.0" }
24-
test_utils = { path = "../test_utils", version = "0.0.0" }
2524

2625
[dev-dependencies]
26+
test_utils = { path = "../test_utils" }
2727
expect-test = "1.1"

crates/ide_completion/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ text_edit = { path = "../text_edit", version = "0.0.0" }
2222
base_db = { path = "../base_db", version = "0.0.0" }
2323
ide_db = { path = "../ide_db", version = "0.0.0" }
2424
profile = { path = "../profile", version = "0.0.0" }
25-
test_utils = { path = "../test_utils", version = "0.0.0" }
2625

2726
# completions crate should depend only on the top-level `hir` package. if you need
2827
# something from some `hir_xxx` subpackage, reexport the API via `hir`.
2928
hir = { path = "../hir", version = "0.0.0" }
3029

3130
[dev-dependencies]
31+
test_utils = { path = "../test_utils" }
3232
expect-test = "1.1"

crates/ide_db/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ syntax = { path = "../syntax", version = "0.0.0" }
2424
text_edit = { path = "../text_edit", version = "0.0.0" }
2525
base_db = { path = "../base_db", version = "0.0.0" }
2626
profile = { path = "../profile", version = "0.0.0" }
27-
test_utils = { path = "../test_utils", version = "0.0.0" }
2827
# ide should depend only on the top-level `hir` package. if you need
2928
# something from some `hir_xxx` subpackage, reexport the API via `hir`.
3029
hir = { path = "../hir", version = "0.0.0" }
3130

3231
[dev-dependencies]
32+
test_utils = { path = "../test_utils" }
3333
expect-test = "1.1"

crates/ide_ssr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ text_edit = { path = "../text_edit", version = "0.0.0" }
1919
syntax = { path = "../syntax", version = "0.0.0" }
2020
ide_db = { path = "../ide_db", version = "0.0.0" }
2121
hir = { path = "../hir", version = "0.0.0" }
22-
test_utils = { path = "../test_utils", version = "0.0.0" }
2322

2423
[dev-dependencies]
24+
test_utils = { path = "../test_utils" }
2525
expect-test = "1.1"

crates/mbe/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ log = "0.4.8"
1818
syntax = { path = "../syntax", version = "0.0.0" }
1919
parser = { path = "../parser", version = "0.0.0" }
2020
tt = { path = "../tt", version = "0.0.0" }
21-
test_utils = { path = "../test_utils", version = "0.0.0" }
2221
stdx = { path = "../stdx", version = "0.0.0" }
2322

2423
[dev-dependencies]
2524
profile = { path = "../profile" }
25+
test_utils = { path = "../test_utils" }

crates/proc_macro_srv/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ memmap2 = "0.2.0"
1717
tt = { path = "../tt", version = "0.0.0" }
1818
mbe = { path = "../mbe", version = "0.0.0" }
1919
proc_macro_api = { path = "../proc_macro_api", version = "0.0.0" }
20-
test_utils = { path = "../test_utils", version = "0.0.0" }
2120

2221
[dev-dependencies]
22+
test_utils = { path = "../test_utils" }
2323
cargo_metadata = "0.13"
2424

2525
# used as proc macro test targets

0 commit comments

Comments
 (0)