-
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 8 pull requests #100356
Rollup of 8 pull requests #100356
Commits on Aug 2, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 53a870c - Browse repository at this point
Copy the full SHA 53a870cView commit details
Commits on Aug 9, 2022
-
Rename integer log* methods to ilog*
This reflects the concensus from the libs team as reported at rust-lang#70887 (comment) Co-authored-by: Yosh Wuyts <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c18f220 - Browse repository at this point
Copy the full SHA c18f220View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6d85bb9 - Browse repository at this point
Copy the full SHA 6d85bb9View commit details -
Configuration menu - View commit details
-
Copy full SHA for fda5144 - Browse repository at this point
Copy the full SHA fda5144View commit details -
Configuration menu - View commit details
-
Copy full SHA for e6478a3 - Browse repository at this point
Copy the full SHA e6478a3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0fd4db3 - Browse repository at this point
Copy the full SHA 0fd4db3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 457ff7c - Browse repository at this point
Copy the full SHA 457ff7cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 750a04e - Browse repository at this point
Copy the full SHA 750a04eView commit details -
Signed-off-by: Vincenzo Palazzo <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 23bd7cb - Browse repository at this point
Copy the full SHA 23bd7cbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2139682 - Browse repository at this point
Copy the full SHA 2139682View commit details
Commits on Aug 10, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 7a1bfc0 - Browse repository at this point
Copy the full SHA 7a1bfc0View commit details -
Rollup merge of rust-lang#99573 - tbodt:stabilize-backtrace, r=yaahc
Stabilize backtrace This PR stabilizes the std::backtrace module. As of rust-lang#99431, the std::Error::backtrace item has been removed, and so the rest of the backtrace feature is set to be stabilized. Previous discussion can be found in rust-lang#72981, rust-lang#3156. Stabilized API summary: ```rust pub mod std { pub mod backtrace { pub struct Backtrace { } pub enum BacktraceStatus { Unsupported, Disabled, Captured, } impl fmt::Debug for Backtrace {} impl Backtrace { pub fn capture() -> Backtrace; pub fn force_capture() -> Backtrace; pub const fn disabled() -> Backtrace; pub fn status(&self) -> BacktraceStatus; } impl fmt::Display for Backtrace {} } } ``` `@yaahc`
Configuration menu - View commit details
-
Copy full SHA for e10f924 - Browse repository at this point
Copy the full SHA e10f924View commit details -
Rollup merge of rust-lang#100069 - dpaoliello:linkordinal, r=michaelw…
…oerister Add error if link_ordinal used with unsupported link kind The `link_ordinal` attribute only has an affect if the `raw-dylib` link kind is used, so add an error if it is used with any other link kind.
Configuration menu - View commit details
-
Copy full SHA for 6b5ec41 - Browse repository at this point
Copy the full SHA 6b5ec41View commit details -
Rollup merge of rust-lang#100086 - JakobDegen:better-tests, r=wesleyw…
…eiser Add more `// unit-test`s to MIR opt tests I only changed things which are hopefully completely uninteresting. I plan to submit more PRs that cover more files, but those cases will need some more complicated (and hence possibly controversial) changes, so I'll try and submit those in reasonably sized batches. r? rust-lang/wg-mir-opt
Configuration menu - View commit details
-
Copy full SHA for f9d6cc5 - Browse repository at this point
Copy the full SHA f9d6cc5View commit details -
Rollup merge of rust-lang#100332 - eholk:stabilize-ilog, r=scottmcm
Rename integer log* methods to ilog* This reflects the concensus from the libs team as reported at rust-lang#70887 (comment). Joint work with `@yoshuawuyts.`
Configuration menu - View commit details
-
Copy full SHA for 0cbecda - Browse repository at this point
Copy the full SHA 0cbecdaView commit details -
Rollup merge of rust-lang#100334 - TaKO8Ki:suggest-missing-semicolon-…
…before-array, r=fee1-dead Suggest a missing semicolon before an array fixes rust-lang#99658
Configuration menu - View commit details
-
Copy full SHA for 354b831 - Browse repository at this point
Copy the full SHA 354b831View commit details -
Rollup merge of rust-lang#100340 - spastorino:fix-100187, r=compiler-…
…errors Iterate generics_def_id_map in reverse order to fix P-critical issue Closes rust-lang#100187 Fixes a `P-critical` beta regression.
Configuration menu - View commit details
-
Copy full SHA for 636f0c7 - Browse repository at this point
Copy the full SHA 636f0c7View commit details -
Rollup merge of rust-lang#100345 - vincenzopalazzo:macros/is_number_d…
…oc, r=joshtriplett docs: remove repetition in `is_numeric` function docs In rust-lang#99628 we introduce new docs for the `is_numeric` function, and this is a follow-up PR that removes some unnecessary repetition that may be introduced by some rebasing. `@rustbot` r? `@joshtriplett`
Configuration menu - View commit details
-
Copy full SHA for 3b97de6 - Browse repository at this point
Copy the full SHA 3b97de6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0a31aa2 - Browse repository at this point
Copy the full SHA 0a31aa2View commit details -
Rollup merge of rust-lang#100352 - ehuss:update-cargo, r=ehuss
Update cargo 7 commits in 4fd148c47e733770c537efac5220744945d572ef..ce40690a5e4e315d3dab0aae1eae69d0252c52ac 2022-08-03 15:03:52 +0000 to 2022-08-09 22:32:17 +0000 - Make the `rust-version` error recommend `cargo update --precise -p crate@ver` (rust-lang/cargo#10891) - resolver docs: link to version requirements syntax full explanation (rust-lang/cargo#10946) - Bump os_info to 3.5.0 (rust-lang/cargo#10943) - Mark --timings=html unstable in the document (rust-lang/cargo#10941) - Mention that aliases are recursive (rust-lang/cargo#10935) - Test if reserved filenames are allowed in Windows (rust-lang/cargo#10322) - improve error message for `no such subcommand` (rust-lang/cargo#10924)
Configuration menu - View commit details
-
Copy full SHA for f6ce6ab - Browse repository at this point
Copy the full SHA f6ce6abView commit details