-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Rollup of 7 pull requests #96117
Rollup of 7 pull requests #96117
Commits on Apr 10, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 09195d3 - Browse repository at this point
Copy the full SHA 09195d3View commit details
Commits on Apr 13, 2022
-
Configuration menu - View commit details
-
Copy full SHA for bbd7ce6 - Browse repository at this point
Copy the full SHA bbd7ce6View commit details
Commits on Apr 14, 2022
-
docs: add link from zip to unzip
The docs for `Iterator::unzip` explain that it is kind of an inverse operation to `Iterator::zip` and guide the reader to the `zip` docs, but the `zip` docs don't let the user know that they can undo the `zip` operation with `unzip`. This change modifies the docs to help the user find `unzip`.
Configuration menu - View commit details
-
Copy full SHA for f6d9577 - Browse repository at this point
Copy the full SHA f6d9577View commit details -
Co-authored-by: Mara Bos <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d73e328 - Browse repository at this point
Copy the full SHA d73e328View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1e78a47 - Browse repository at this point
Copy the full SHA 1e78a47View commit details -
update: actions/checkout@v2 to actions/checkout@v3
update: actions/checkout@v2 to actions/checkout@v3 for all yaml files Revert "update: actions/checkout@v2 to actions/checkout@v3 for all yaml files" This reverts commit 7445e582b900f0f56f5f2bd9036aacab97ef28e9. change GitHub Actions version v2 to v3 change GitHub Actions
Configuration menu - View commit details
-
Copy full SHA for 9d319f3 - Browse repository at this point
Copy the full SHA 9d319f3View commit details
Commits on Apr 15, 2022
-
The current "This is supported" wording implies that it's possible to still use the item on other configurations, but in an unsupported way. Changing this to "Available" removes this ambiguity.
Configuration menu - View commit details
-
Copy full SHA for 753d567 - Browse repository at this point
Copy the full SHA 753d567View commit details -
Make some
usize
-typed masks definition agnostic to the size ofusize
Some masks where defined as ```rust const NONASCII_MASK: usize = 0x80808080_80808080u64 as usize; ``` where it was assumed that `usize` is never wider than 64, which is currently true. To make those constants valid in a hypothetical 128-bit target, these constants have been redefined in an `usize`-width-agnostic way ```rust const NONASCII_MASK: usize = usize::from_ne_bytes([0x80; size_of::<usize>()]); ``` There are already some cases where Rust anticipates the possibility of supporting 128-bit targets, such as not implementing `From<usize>` for `u64`.
Configuration menu - View commit details
-
Copy full SHA for 93ae6f8 - Browse repository at this point
Copy the full SHA 93ae6f8View commit details
Commits on Apr 16, 2022
-
Rollup merge of rust-lang#95887 - petrochenkov:doclink5, r=cjgillot
resolve: Create dummy bindings for all unresolved imports Apparently such bindings weren't previously created for all unresolved imports, causing issues like rust-lang#95879. In this PR I'm trying to create such dummy bindings in a more centralized way by calling `import_dummy_binding` once for all imports in `finalize_imports`. Fixes rust-lang#95879.
Configuration menu - View commit details
-
Copy full SHA for 0a8acac - Browse repository at this point
Copy the full SHA 0a8acacView commit details -
Rollup merge of rust-lang#96023 - matthiaskrgr:clippyper1304, r=lcnr
couple of clippy::perf fixes
Configuration menu - View commit details
-
Copy full SHA for 91847c4 - Browse repository at this point
Copy the full SHA 91847c4View commit details -
Rollup merge of rust-lang#96035 - Gumichocopengin8:feature/update-git…
…hub-action-version, r=pietroalbini Update GitHub Actions actions/checkout Version v2 -> v3 Update `actions/checkout@v2` to `actions/checkout@v3` because of Node12 will be out of life after Aril 30, 2022 [[Reference](https://nodejs.org/en/about/releases/)]. `actions/xxxx@v3` use Node16 whose support lasts until April 30, 2024.
Configuration menu - View commit details
-
Copy full SHA for ce30f5c - Browse repository at this point
Copy the full SHA ce30f5cView commit details -
Rollup merge of rust-lang#96038 - beyarkay:patch-1, r=m-ou-se
docs: add link from zip to unzip The docs for `Iterator::unzip` explain that it is kind of an inverse operation to `Iterator::zip` and guide the reader to the `zip` docs, but the `zip` docs don't let the user know that they can undo the `zip` operation with `unzip`. This change modifies the docs to help the user find `unzip`.
Configuration menu - View commit details
-
Copy full SHA for bd007ba - Browse repository at this point
Copy the full SHA bd007baView commit details -
Rollup merge of rust-lang#96047 - lnicola:rust-analyzer-2022-04-14, r…
…=lnicola ⬆️ rust-analyzer r? ``@ghost``
Configuration menu - View commit details
-
Copy full SHA for acd482b - Browse repository at this point
Copy the full SHA acd482bView commit details -
Rollup merge of rust-lang#96059 - euclio:doc-cfg, r=manishearth,guill…
…aumegomez clarify doc(cfg) wording The current "This is supported" wording implies that it's possible to still use the item on other configurations, but in an unsupported way. Changing this to "Available" removes this ambiguity.
Configuration menu - View commit details
-
Copy full SHA for 1bce78a - Browse repository at this point
Copy the full SHA 1bce78aView commit details -
Rollup merge of rust-lang#96081 - eduardosm:masks_usize_size_agnostic…
…, r=yaahc Make some `usize`-typed masks definitions agnostic to the size of `usize` Some masks where defined as ```rust const NONASCII_MASK: usize = 0x80808080_80808080u64 as usize; ``` where it was assumed that `usize` is never wider than 64, which is currently true. To make those constants valid in a hypothetical 128-bit target, these constants have been redefined in an `usize`-width-agnostic way ```rust const NONASCII_MASK: usize = usize::from_ne_bytes([0x80; size_of::<usize>()]); ``` There are already some cases where Rust anticipates the possibility of supporting 128-bit targets, such as not implementing `From<usize>` for `u64`.
Configuration menu - View commit details
-
Copy full SHA for 4ed7627 - Browse repository at this point
Copy the full SHA 4ed7627View commit details