Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c182ce9

Browse files
committedFeb 11, 2025
Auto merge of rust-lang#136845 - matthiaskrgr:rollup-ol4np4z, r=matthiaskrgr
Rollup of 7 pull requests Successful merges: - rust-lang#136107 (Introduce CoercePointeeWellformed for coherence checks at typeck stage) - rust-lang#136155 (Enable sanitizers on MSVC CI jobs) - rust-lang#136524 (Delay bug when method confirmation cannot upcast object pick of self) - rust-lang#136584 (Prevent generic pattern types from being used in libstd) - rust-lang#136603 (compiler: gate `extern "{abi}"` in ast_lowering) - rust-lang#136821 (assign marcoieni and jdno to infra-ci PRs) - rust-lang#136825 (Update books) r? `@ghost` `@rustbot` modify labels: rollup
2 parents ffa9afe + 5a44f78 commit c182ce9

File tree

92 files changed

+938
-502
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+938
-502
lines changed
 

‎Cargo.lock

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3317,7 +3317,6 @@ dependencies = [
33173317
"rand 0.8.5",
33183318
"rand_xoshiro",
33193319
"rustc_data_structures",
3320-
"rustc_feature",
33213320
"rustc_index",
33223321
"rustc_macros",
33233322
"rustc_serialize",
@@ -3379,6 +3378,7 @@ dependencies = [
33793378
"rustc_ast_pretty",
33803379
"rustc_data_structures",
33813380
"rustc_errors",
3381+
"rustc_feature",
33823382
"rustc_fluent_macro",
33833383
"rustc_hir",
33843384
"rustc_index",
@@ -3683,6 +3683,7 @@ version = "0.0.0"
36833683
dependencies = [
36843684
"ctrlc",
36853685
"libc",
3686+
"rustc_abi",
36863687
"rustc_ast",
36873688
"rustc_ast_lowering",
36883689
"rustc_ast_passes",
@@ -4337,6 +4338,7 @@ version = "0.0.0"
43374338
dependencies = [
43384339
"rustc_abi",
43394340
"rustc_ast",
4341+
"rustc_ast_lowering",
43404342
"rustc_ast_pretty",
43414343
"rustc_attr_parsing",
43424344
"rustc_data_structures",

‎compiler/rustc_abi/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ bitflags = "2.4.1"
99
rand = { version = "0.8.4", default-features = false, optional = true }
1010
rand_xoshiro = { version = "0.6.0", optional = true }
1111
rustc_data_structures = { path = "../rustc_data_structures", optional = true }
12-
rustc_feature = { path = "../rustc_feature", optional = true }
1312
rustc_index = { path = "../rustc_index", default-features = false }
1413
rustc_macros = { path = "../rustc_macros", optional = true }
1514
rustc_serialize = { path = "../rustc_serialize", optional = true }
@@ -24,7 +23,6 @@ default = ["nightly", "randomize"]
2423
# without depending on rustc_data_structures, rustc_macros and rustc_serialize
2524
nightly = [
2625
"dep:rustc_data_structures",
27-
"dep:rustc_feature",
2826
"dep:rustc_macros",
2927
"dep:rustc_serialize",
3028
"dep:rustc_span",

0 commit comments

Comments
 (0)