-
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
Rollup of 14 pull requests #101295
Rollup of 14 pull requests #101295
Commits on Mar 1, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 4dded23 - Browse repository at this point
Copy the full SHA 4dded23View commit details
Commits on Apr 15, 2022
-
Configuration menu - View commit details
-
Copy full SHA for c08f460 - Browse repository at this point
Copy the full SHA c08f460View commit details
Commits on Jun 4, 2022
-
Configuration menu - View commit details
-
Copy full SHA for f479289 - Browse repository at this point
Copy the full SHA f479289View commit details
Commits on Jul 21, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 4fdf43f - Browse repository at this point
Copy the full SHA 4fdf43fView commit details
Commits on Aug 26, 2022
-
Use getuid to check instead of USER env var in rustbuild
This makes it consistent with `x.py` as changed in rust-lang#95671 Fixes rust-lang#100459
Configuration menu - View commit details
-
Copy full SHA for b9c47f6 - Browse repository at this point
Copy the full SHA b9c47f6View commit details
Commits on Aug 29, 2022
-
bootstrap: Add llvm-has-rust-patches target option
This is so you can check out an upstream commit in src/llvm-project and have everything just work.
Configuration menu - View commit details
-
Copy full SHA for e136e02 - Browse repository at this point
Copy the full SHA e136e02View commit details -
Ignore cargo target folder in src/bootstrap
Needed after changes in rust-lang#97513.
Configuration menu - View commit details
-
Copy full SHA for 73958fd - Browse repository at this point
Copy the full SHA 73958fdView commit details
Commits on Aug 30, 2022
-
Make docs formulation more consistent for NonZero{int}
Use third person, as it is used for other std documentation.
Configuration menu - View commit details
-
Copy full SHA for de6a3ec - Browse repository at this point
Copy the full SHA de6a3ecView commit details
Commits on Aug 31, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 803e35a - Browse repository at this point
Copy the full SHA 803e35aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4304d1d - Browse repository at this point
Copy the full SHA 4304d1dView commit details -
Configuration menu - View commit details
-
Copy full SHA for b112bfe - Browse repository at this point
Copy the full SHA b112bfeView commit details -
Fix bad target name in Walkthrough
Walkthrough currently say: ``` rustup target add aarch_64-fuchsia ``` but should say ``` rustup target add aarch64-fuchsia ```
Configuration menu - View commit details
-
Copy full SHA for a928255 - Browse repository at this point
Copy the full SHA a928255View commit details -
rustdoc: remove unused
.docblock .impl-items
CSSThe impl-items list stopped being nested inside a docblock since c1b1d68
Configuration menu - View commit details
-
Copy full SHA for 037a911 - Browse repository at this point
Copy the full SHA 037a911View commit details
Commits on Sep 1, 2022
-
Configuration menu - View commit details
-
Copy full SHA for d8b572b - Browse repository at this point
Copy the full SHA d8b572bView commit details -
Configuration menu - View commit details
-
Copy full SHA for a20318d - Browse repository at this point
Copy the full SHA a20318dView commit details -
Fix filename of armv4t-none-eabi.md
The filename differed from the link in SUMMARY.md, causing it to 404.
Configuration menu - View commit details
-
Copy full SHA for 098725c - Browse repository at this point
Copy the full SHA 098725cView commit details -
Configuration menu - View commit details
-
Copy full SHA for c9f4af6 - Browse repository at this point
Copy the full SHA c9f4af6View commit details -
Configuration menu - View commit details
-
Copy full SHA for fb14ad0 - Browse repository at this point
Copy the full SHA fb14ad0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 68d0094 - Browse repository at this point
Copy the full SHA 68d0094View commit details -
Configuration menu - View commit details
-
Copy full SHA for 78e9bea - Browse repository at this point
Copy the full SHA 78e9beaView commit details -
rustdoc: remove unneeded CSS
.content table td:first-child > a
Configuration menu - View commit details
-
Copy full SHA for 3107133 - Browse repository at this point
Copy the full SHA 3107133View commit details -
Rollup merge of rust-lang#94467 - ibraheemdev:master, r=pnkfelix
Add `special_module_name` lint Declaring `lib` as a module is one of the most common beginner mistakes when trying to setup a binary and library target in the same crate. `special_module_name` lints against it, as well as `mod main;` ``` warning: found module declaration for main.rs --> $DIR/special_module_name.rs:4:1 | LL | mod main; | ^^^^^^^^^ | = note: a binary crate cannot be used as library warning: found module declaration for lib.rs --> $DIR/special_module_name.rs:1:1 | LL | mod lib; | ^^^^^^^^ | = note: `#[warn(special_module_name)]` on by default = note: lib.rs is the root of this crate's library target = help: to refer to it from other targets, use the library's name as the path ``` Note that the help message is not the best in that it doesn't provide an example of an import path (`the_actual_crate_name::`), and doesn't check whether the current file is part of a library/binary target to provide more specific error messages. I'm not sure where this lint would have to be run to access that information.
Configuration menu - View commit details
-
Copy full SHA for da1d738 - Browse repository at this point
Copy the full SHA da1d738View commit details -
Rollup merge of rust-lang#100852 - Samyak2:samyak/100459, r=Mark-Simu…
…lacrum Use `getuid` to check instead of `USER` env var in rustbuild This makes it consistent with `x.py` as changed in rust-lang#95671 Fixes rust-lang#100459
Configuration menu - View commit details
-
Copy full SHA for b05f97d - Browse repository at this point
Copy the full SHA b05f97dView commit details -
Rollup merge of rust-lang#101072 - tmandry:llvm-is-vanilla, r=Mark-Si…
…mulacrum bootstrap: Add llvm-has-rust-patches target option This is so you can check out an upstream commit in src/llvm-project and have everything just work. This simplifies the logic in `is_rust_llvm` a bit; it doesn't need to check for download-ci-llvm because we would have already errored if both that and llvm-config were specified on the host platform.
Configuration menu - View commit details
-
Copy full SHA for 1c0561a - Browse repository at this point
Copy the full SHA 1c0561aView commit details -
Rollup merge of rust-lang#101190 - yjhn:patch-1, r=Mark-Simulacrum
Make docs formulation more consistent for NonZero{int} Use third person, as it is used for other `std` documentation.
Configuration menu - View commit details
-
Copy full SHA for 36d0506 - Browse repository at this point
Copy the full SHA 36d0506View commit details -
Rollup merge of rust-lang#101245 - GuillaumeGomez:remove-unneeded-whe…
…re-whitespace, r=notriddle Remove unneeded where whitespace It fixes these two bugs: ![Screenshot from 2022-08-31 18-14-40](https://user-images.githubusercontent.com/3050060/187727950-94657419-abfa-454c-9d27-004280fbcb45.png) ![Screenshot from 2022-08-31 18-14-49](https://user-images.githubusercontent.com/3050060/187727956-21d1b39d-62d7-4e7b-8f6f-631ceda67a19.png) It's a relic from a very old time (this commit: rust-lang@bfd01b7). You can test the result [here](https://rustdoc.crud.net/imperio/remove-unneeded-where-whitespace/lib2/struct.WhereWhitespace.html). cc `````````@jsha````````` r? `````````@notriddle`````````
Configuration menu - View commit details
-
Copy full SHA for 21c8447 - Browse repository at this point
Copy the full SHA 21c8447View commit details -
Rollup merge of rust-lang#101251 - diminishedprime:patch-1, r=JohnTitor
Fix bad target name in Walkthrough Walkthrough currently say: ``` rustup target add aarch_64-fuchsia ``` but should say ``` rustup target add aarch64-fuchsia ```
Configuration menu - View commit details
-
Copy full SHA for f6c7c4e - Browse repository at this point
Copy the full SHA f6c7c4eView commit details -
Rollup merge of rust-lang#101254 - rust-lang:notriddle/remove-even-mo…
…re-css, r=jsha rustdoc: remove unused `.docblock .impl-items` CSS The impl-items list stopped being nested inside a docblock since c1b1d68
Configuration menu - View commit details
-
Copy full SHA for 418748f - Browse repository at this point
Copy the full SHA 418748fView commit details -
Rollup merge of rust-lang#101256 - andrewpollack:fuchsia-docs-adding,…
… r=tmandry Fixes/adjustments to Fuchsia doc walkthrough Small fixes/adjustments missed during rust-lang#100927
Configuration menu - View commit details
-
Copy full SHA for cbcea24 - Browse repository at this point
Copy the full SHA cbcea24View commit details -
Rollup merge of rust-lang#101270 - m-ou-se:update-comment, r=joshtrip…
…lett Update outdated comment about output capturing in print_to.
Configuration menu - View commit details
-
Copy full SHA for b36fd55 - Browse repository at this point
Copy the full SHA b36fd55View commit details -
Rollup merge of rust-lang#101271 - QuinnPainter:patch-1, r=Dylan-DPC
Fix filename of armv4t-none-eabi.md The filename differed from the link in SUMMARY.md, causing it to 404.
Configuration menu - View commit details
-
Copy full SHA for 754cb2a - Browse repository at this point
Copy the full SHA 754cb2aView commit details -
Rollup merge of rust-lang#101274 - aDotInTheVoid:comment-typo, r=TaKO8Ki
Fix typo in comment
Configuration menu - View commit details
-
Copy full SHA for e9df5dd - Browse repository at this point
Copy the full SHA e9df5ddView commit details -
Rollup merge of rust-lang#101279 - GuillaumeGomez:doc_auto_cfg_nested…
…_impl, r=notriddle Fix doc_auto_cfg for impl blocks in different modules with different `cfg` Fixes rust-lang#101129. Just like reexports, impl blocks don't necessarily share the same "space" as the item they implement so we need to merge attributes from its parents as well. r? `@notriddle`
Configuration menu - View commit details
-
Copy full SHA for 8f8a5d2 - Browse repository at this point
Copy the full SHA 8f8a5d2View commit details -
Rollup merge of rust-lang#101285 - TaKO8Ki:do-not-suggest-adding-move…
…-when-closure-is-already-marked-as-move, r=oli-obk Do not suggest adding `move` to closure when `move` is already used Fixes rust-lang#101227
Configuration menu - View commit details
-
Copy full SHA for 1bafe0b - Browse repository at this point
Copy the full SHA 1bafe0bView commit details -
Rollup merge of rust-lang#101292 - rust-lang:notriddle/rustdoc-table-…
Configuration menu - View commit details
-
Copy full SHA for 1c12ded - Browse repository at this point
Copy the full SHA 1c12dedView commit details