Skip to content

Commit 5ecd3ed

Browse files
committed
Auto merge of #153416 - JonathanBrouwer:rollup-eezxWTV, r=JonathanBrouwer
Rollup of 12 pull requests Successful merges: - rust-lang/rust#153402 (miri subtree update) - rust-lang/rust#152164 (Lint unused features) - rust-lang/rust#152801 (Refactor WriteBackendMethods a bit) - rust-lang/rust#153196 (Update path separators to be available in const context) - rust-lang/rust#153204 (Add `#[must_use]` attribute to `HashMap` and `HashSet` constructors) - rust-lang/rust#153317 (Abort after `representability` errors) - rust-lang/rust#153276 (Remove `cycle_fatal` query modifier) - rust-lang/rust#153300 (Tweak some of our internal `#[rustc_*]` TEST attributes) - rust-lang/rust#153396 (use `minicore` in some `run-make` tests) - rust-lang/rust#153401 (Migrationg of `LintDiagnostic` - part 7) - rust-lang/rust#153406 (Remove a ping for myself) - rust-lang/rust#153414 (Rename translation -> formatting)
2 parents 0ba383e + c17b242 commit 5ecd3ed

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

crates/proc-macro-api/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
feature = "sysroot-abi",
1111
feature(proc_macro_internals, proc_macro_diagnostic, proc_macro_span)
1212
)]
13-
#![allow(internal_features)]
13+
#![allow(internal_features, unused_features)]
1414
#![cfg_attr(feature = "in-rust-tree", feature(rustc_private))]
1515

1616
#[cfg(feature = "in-rust-tree")]

crates/proc-macro-srv/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
internal_features,
1919
clippy::disallowed_types,
2020
clippy::print_stderr,
21-
unused_crate_dependencies
21+
unused_crate_dependencies,
22+
unused_features
2223
)]
2324
#![deny(deprecated_safe, clippy::undocumented_unsafe_blocks)]
2425

0 commit comments

Comments
 (0)