Skip to content

Commit d22043c

Browse files
authored
Rollup merge of #115445 - klensy:less-deps, r=Mark-Simulacrum
remove some unused crate deps
2 parents 545560a + 6950689 commit d22043c

File tree

3 files changed

+0
-8
lines changed

3 files changed

+0
-8
lines changed

Cargo.lock

-4
Original file line numberDiff line numberDiff line change
@@ -4228,7 +4228,6 @@ dependencies = [
42284228
"measureme",
42294229
"memoffset",
42304230
"rustc-rayon-core",
4231-
"rustc_ast",
42324231
"rustc_data_structures",
42334232
"rustc_errors",
42344233
"rustc_hir",
@@ -4437,15 +4436,12 @@ dependencies = [
44374436
name = "rustc_traits"
44384437
version = "0.0.0"
44394438
dependencies = [
4440-
"rustc_ast",
44414439
"rustc_data_structures",
44424440
"rustc_hir",
44434441
"rustc_infer",
44444442
"rustc_middle",
44454443
"rustc_span",
4446-
"rustc_target",
44474444
"rustc_trait_selection",
4448-
"smallvec",
44494445
"tracing",
44504446
]
44514447

compiler/rustc_query_impl/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ edition = "2021"
99
[dependencies]
1010
field-offset = "0.3.5"
1111
measureme = "10.0.0"
12-
rustc_ast = { path = "../rustc_ast" }
1312
rustc_data_structures = { path = "../rustc_data_structures" }
1413
rustc_errors = { path = "../rustc_errors" }
1514
rustc_hir = { path = "../rustc_hir" }

compiler/rustc_traits/Cargo.toml

-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ tracing = "0.1"
88
rustc_middle = { path = "../rustc_middle" }
99
rustc_data_structures = { path = "../rustc_data_structures" }
1010
rustc_hir = { path = "../rustc_hir" }
11-
rustc_ast = { path = "../rustc_ast" }
1211
rustc_span = { path = "../rustc_span" }
13-
rustc_target = { path = "../rustc_target" }
14-
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
1512
rustc_infer = { path = "../rustc_infer" }
1613
rustc_trait_selection = { path = "../rustc_trait_selection" }

0 commit comments

Comments
 (0)