-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Remove std's transitive dependency on cfg-if 0.1 #103367
Conversation
(rust-highfive has picked a reviewer for you, use r? to override) |
r? @thomcc |
This looks fine to me. @bors r+ |
📌 Commit 5e672dfe811c36a9ff4bb472f32bbef604dbb256 has been approved by It is now in the queue for this repository. |
Hm, actually, to avoid spreading this over more PRs than needed, can you make the other changes required to move us to cfg-if 1.0 in everything from std? (e.g. in @bors r- |
5e672df
to
3a8ab8d
Compare
Hey! It looks like you've submitted a new PR for the library teams! If this PR contains changes to any Examples of
|
@thomcc done! |
Not sure if that's intended but |
Can you look into that @chbaker0? Please [@]rustbot ready to change the label to S-waiting-on-review when you're good to go. |
After rust-lang#101946 this completes the move to cfg-if 1.0 by: * Updating getrandom 0.1.14->0.1.16 * Updating panic_abort, panic_unwind, and unwind to cfg-if 1.0
3a8ab8d
to
dfab01b
Compare
Thanks for pointing that out. I checked with Should be handled now. @rustbot -S-waiting-on-author +S-waiting-on-review |
oops @rustbot label -S-waiting-on-author +S-waiting-on-review |
LGTM, thanks @bors r+ |
…iaskrgr Rollup of 8 pull requests Successful merges: - rust-lang#103367 (Remove std's transitive dependency on cfg-if 0.1) - rust-lang#103397 (Port `dead_code` lints to be translatable.) - rust-lang#103681 (libtest: run all tests in their own thread, if supported by the host) - rust-lang#103792 (Migrate `codegen_ssa` to diagnostics structs - [Part 2]) - rust-lang#103897 (asm: Work around LLVM bug on AArch64) - rust-lang#103937 (minor changes to make method lookup diagnostic code easier to read) - rust-lang#103958 (Test tidy should not count untracked paths towards entries limit) - rust-lang#103964 (Give a specific lint for unsafety not being inherited) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
This change was mistakenly left out of rust-lang#103367
Update test's cfg-if dependency to 1.0 This change was mistakenly left out of rust-lang#103367 Finishes rust-lang#103365
Update nightly release from 2022-11-01 to 2022-11-18 Rolls in: * rust-lang/rust#103367 * rust-lang/rust#103977 Fixed: 1383950 Change-Id: I60ad4a8209eafac4d944a9f6ef873359062dd1ba No-Try: true Change-Id: I60ad4a8209eafac4d944a9f6ef873359062dd1ba Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4013723 Auto-Submit: Collin Baker <collinbaker@chromium.org> Reviewed-by: danakj <danakj@chromium.org> Commit-Queue: Collin Baker <collinbaker@chromium.org> Cr-Commit-Position: refs/heads/main@{#1074798}
After #101946 this completes the move to cfg-if 1.0 by:
Fixes #103365