Skip to content

Commit 39099b7

Browse files
authored
Unrolled build for rust-lang#127131
Rollup merge of rust-lang#127131 - Kobzol:remove-unused-deps, r=compiler-errors Remove unused `rustc_trait_selection` dependencies Found using `cargo-machete`. The `bitflags` and `derivative` crates were added for the new trait solver, but weren't removed when the next trait solver code was uplifted to a separate crate.
2 parents 2975a21 + e52d95b commit 39099b7

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

Cargo.lock

-4
Original file line numberDiff line numberDiff line change
@@ -4760,8 +4760,6 @@ checksum = "8ba09476327c4b70ccefb6180f046ef588c26a24cf5d269a9feba316eb4f029f"
47604760
name = "rustc_trait_selection"
47614761
version = "0.0.0"
47624762
dependencies = [
4763-
"bitflags 2.5.0",
4764-
"derivative",
47654763
"itertools",
47664764
"rustc_ast",
47674765
"rustc_ast_ir",
@@ -4770,7 +4768,6 @@ dependencies = [
47704768
"rustc_errors",
47714769
"rustc_fluent_macro",
47724770
"rustc_hir",
4773-
"rustc_index",
47744771
"rustc_infer",
47754772
"rustc_macros",
47764773
"rustc_middle",
@@ -4783,7 +4780,6 @@ dependencies = [
47834780
"rustc_target",
47844781
"rustc_transmute",
47854782
"rustc_type_ir",
4786-
"rustc_type_ir_macros",
47874783
"smallvec",
47884784
"tracing",
47894785
]

compiler/rustc_trait_selection/Cargo.toml

-4
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
bitflags = "2.4.1"
9-
derivative = "2.2.0"
108
itertools = "0.12"
119
rustc_ast = { path = "../rustc_ast" }
1210
rustc_ast_ir = { path = "../rustc_ast_ir" }
@@ -15,7 +13,6 @@ rustc_data_structures = { path = "../rustc_data_structures" }
1513
rustc_errors = { path = "../rustc_errors" }
1614
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
1715
rustc_hir = { path = "../rustc_hir" }
18-
rustc_index = { path = "../rustc_index" }
1916
rustc_infer = { path = "../rustc_infer" }
2017
rustc_macros = { path = "../rustc_macros" }
2118
rustc_middle = { path = "../rustc_middle" }
@@ -28,7 +25,6 @@ rustc_span = { path = "../rustc_span" }
2825
rustc_target = { path = "../rustc_target" }
2926
rustc_transmute = { path = "../rustc_transmute", features = ["rustc"] }
3027
rustc_type_ir = { path = "../rustc_type_ir" }
31-
rustc_type_ir_macros = { path = "../rustc_type_ir_macros" }
3228
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
3329
tracing = "0.1"
3430
# tidy-alphabetical-end

0 commit comments

Comments
 (0)