-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bump windows crate 0.46 -> 0.48 #111393
bump windows crate 0.46 -> 0.48 #111393
Conversation
r? @oli-obk (rustbot has picked a reviewer for you, use r? to override) |
These commits modify the If this was unintentional then you should revert the changes before this PR is merged. |
This comment has been minimized.
This comment has been minimized.
looks like this has been attempted before and explicitly rejected from the tidy message. |
Hmm, but why this worked with previous version? Dependency tree looks the same. |
oh 🤦 I misread the "not explicitly permitted" as "explicitly not permitted". Yea, these deps just need to be added to the list of permitted dependencies. They look fine to me. |
@@ -6,47 +6,53 @@ use std::path::Path; | |||
|
|||
/// These are licenses that are allowed for all crates, including the runtime, | |||
/// rustc, tools, etc. | |||
#[rustfmt::skip] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one and lower need to keep comments in vertical line, otherwise rustfmt will break it.
@@ -268,6 +268,14 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[ | |||
"winapi-i686-pc-windows-gnu", | |||
"winapi-util", | |||
"winapi-x86_64-pc-windows-gnu", | |||
"windows-targets", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess cargo metadata just considered the non raw-dylib case before.
@bors r+ |
…iaskrgr Rollup of 6 pull requests Successful merges: - rust-lang#111179 (Fix instrument-coverage tests by using Python to sort instantiation groups) - rust-lang#111393 (bump windows crate 0.46 -> 0.48) - rust-lang#111441 (Verify copies of mutable pointers in 2 stages in ReferencePropagation) - rust-lang#111456 (Update cargo) - rust-lang#111490 (Don't ICE in layout computation for placeholder types) - rust-lang#111492 (use by ref TokenTree iterator to avoid a few clones) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
This drops duped version of crate(0.46), reduces
rustc_driver.dll
~800kb and reduces exported functions number from 26k to 22k.Also while here, added
tidy-alphabetical
sorting to lists in tidy allowed lists.