Skip to content

Commit f52291b

Browse files
authored
Rollup merge of rust-lang#125478 - Urgau:check-cfg-config-bump-stage0, r=Mark-Simulacrum
Bump bootstrap compiler to the latest beta compiler This PR updates the bootstrap compiler, aka stage0 to the latest beta version, since it contains rust-lang/cargo#13925. It removes those unconditional Cargo warnings: ``` warning: [...]/rust/library/core/Cargo.toml: unused manifest key: lints.rust.unexpected_cfgs.check-cfg warning: [...]/rust/library/std/Cargo.toml: unused manifest key: lints.rust.unexpected_cfgs.check-cfg warning: [...]/rust/library/alloc/Cargo.toml: unused manifest key: lints.rust.unexpected_cfgs.check-cfg ``` for all contributors/users of this repository (including CI). I don't know if that's something we do, or if it's even advisable, feel free to close. r? `@Mark-Simulacrum`
2 parents 38dcab9 + 59b5617 commit f52291b

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

alloc/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ optimize_for_size = ["core/optimize_for_size"]
4545
level = "warn"
4646
# x.py uses beta cargo, so `check-cfg` entries do not yet take effect
4747
# for rust-lang/rust. But for users of `-Zbuild-std` it does.
48-
# The unused warning is waiting for rust-lang/cargo#13925 to reach beta.
4948
check-cfg = [
5049
'cfg(bootstrap)',
5150
'cfg(no_global_oom_handling)',

core/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ debug_refcell = []
4141
level = "warn"
4242
# x.py uses beta cargo, so `check-cfg` entries do not yet take effect
4343
# for rust-lang/rust. But for users of `-Zbuild-std` it does.
44-
# The unused warning is waiting for rust-lang/cargo#13925 to reach beta.
4544
check-cfg = [
4645
'cfg(bootstrap)',
4746
'cfg(no_fp_fmt_parse)',

std/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ test = true
102102
level = "warn"
103103
# x.py uses beta cargo, so `check-cfg` entries do not yet take effect
104104
# for rust-lang/rust. But for users of `-Zbuild-std` it does.
105-
# The unused warning is waiting for rust-lang/cargo#13925 to reach beta.
106105
check-cfg = [
107106
'cfg(bootstrap)',
108107
'cfg(target_arch, values("xtensa"))',

0 commit comments

Comments
 (0)