-
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 6 pull requests #127148
Rollup of 6 pull requests #127148
Commits on Jun 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 879d143 - Browse repository at this point
Copy the full SHA 879d143View commit details -
Configuration menu - View commit details
-
Copy full SHA for 39bf1dc - Browse repository at this point
Copy the full SHA 39bf1dcView commit details
Commits on Jun 29, 2024
-
Updated docs on
#[panic_handler]
inlibrary/core/src/lib.rs
Askar Safin committedJun 29, 2024 Configuration menu - View commit details
-
Copy full SHA for 28ba5e4 - Browse repository at this point
Copy the full SHA 28ba5e4View commit details -
Configuration menu - View commit details
-
Copy full SHA for e52d95b - Browse repository at this point
Copy the full SHA e52d95bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8b783f1 - Browse repository at this point
Copy the full SHA 8b783f1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 61e2f5c - Browse repository at this point
Copy the full SHA 61e2f5cView commit details -
Configuration menu - View commit details
-
Copy full SHA for a5fc783 - Browse repository at this point
Copy the full SHA a5fc783View commit details -
Print
TypeId
as au128
forDebug
Since <rust-lang#121358>, `TypeId` is represented as a `(u64, u64)`. This also made the debug implementation a lot larger, which is especially apparent with pretty formatting. Make this less noisy by converting the inner value back to a `u128` then printing as a tuple struct. Current: TypeId { t: (1403077013027291752, 4518903163082958039) } TypeId { t: ( 1403077013027291752, 4518903163082958039, ), } New: TypeId(25882202575019293479932656973818029271) TypeId( 25882202575019293479932656973818029271, )
Configuration menu - View commit details
-
Copy full SHA for 682e7c1 - Browse repository at this point
Copy the full SHA 682e7c1View commit details
Commits on Jun 30, 2024
-
Rollup merge of rust-lang#126705 - safinaskar:panic, r=Mark-Simulacrum
Updated docs on `#[panic_handler]` in `library/core/src/lib.rs`
Configuration menu - View commit details
-
Copy full SHA for ab687f3 - Browse repository at this point
Copy the full SHA ab687f3View commit details -
Rollup merge of rust-lang#126876 - WaffleLapkin:unignoreconfigtoml, r…
…=Mark-Simulacrum Add `.ignore` file to make `config.toml` searchable in vscode Based on this answer on [Stack Overflow](https://stackoverflow.com/a/72059075).
Configuration menu - View commit details
-
Copy full SHA for 67d1328 - Browse repository at this point
Copy the full SHA 67d1328View commit details -
Rollup merge of rust-lang#126906 - GrigorenkoPV:fixme-split_at_first,…
… r=Mark-Simulacrum Small fixme in core now that split_first has no codegen issues rust-lang#109328 (comment) BTW, I have a crate implementing exactly this kind of an iterator: https://github.com/GrigorenkoPV/head-tail-iter and I was wondering if it would be worthwhile to try and make an ACP for it to get it included in std (or maybe itertools). My only doubt is that it kinda incentives writing O(n^2) algorithms and is not the hard to replace with a `while let` loop (just as in this PR).
Configuration menu - View commit details
-
Copy full SHA for 6fc769b - Browse repository at this point
Copy the full SHA 6fc769bView commit details -
Rollup merge of rust-lang#127127 - notriddle:notriddle/pulldown-cmark…
…-0.11, r=GuillaumeGomez rustdoc: update to pulldown-cmark 0.11 r? rustdoc This pull request updates rustdoc to the latest version of pulldown-cmark. Along with adding new markdown extensions (which this PR doesn't enable), the new pulldown-cmark version also fixes a large number of bugs. Because all text files successfully parse as markdown, these bugfixes change the output, which can break people's existing docs. A crater run, rust-lang#121659, has already been run for this change. The first commit upgrades and fixes rustdoc. The second commit adds a lint for the footnote and block quote parser changes, which break the largest numbers of docs in the Crater run. The strikethrough change was mitigated in pulldown-cmark itself. Unblocks rust-lang/rust-clippy#12876
Configuration menu - View commit details
-
Copy full SHA for a8cf593 - Browse repository at this point
Copy the full SHA a8cf593View commit details -
Rollup merge of rust-lang#127131 - Kobzol:remove-unused-deps, r=compi…
…ler-errors Remove unused `rustc_trait_selection` dependencies Found using `cargo-machete`. The `bitflags` and `derivative` crates were added for the new trait solver, but weren't removed when the next trait solver code was uplifted to a separate crate.
Configuration menu - View commit details
-
Copy full SHA for da8bd26 - Browse repository at this point
Copy the full SHA da8bd26View commit details -
Rollup merge of rust-lang#127134 - tgross35:typeid-debug, r=Nilstrieb
Print `TypeId` as a `u128` for `Debug` Since <rust-lang#121358>, `TypeId` is represented as a `(u64, u64)`. This also made the debug implementation a lot larger, which is especially apparent with pretty formatting. Change this to convert the inner value back to a `u128` and then print as a tuple struct to make this less noisy. Current: TypeId { t: (1403077013027291752, 4518903163082958039) } TypeId { t: ( 1403077013027291752, 4518903163082958039, ), } New: TypeId(25882202575019293479932656973818029271) TypeId( 25882202575019293479932656973818029271, )
Configuration menu - View commit details
-
Copy full SHA for 5d7da40 - Browse repository at this point
Copy the full SHA 5d7da40View commit details