-
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 8 pull requests #127403
Rollup of 8 pull requests #127403
Commits on Jul 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9e12d91 - Browse repository at this point
Copy the full SHA 9e12d91View commit details
Commits on Jul 4, 2024
-
impl PathBuf::add_extension and Path::with_added_extension
Signed-off-by: tison <wander4096@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 57e76d4 - Browse repository at this point
Copy the full SHA 57e76d4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0adb825 - Browse repository at this point
Copy the full SHA 0adb825View commit details
Commits on Jul 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4abc51a - Browse repository at this point
Copy the full SHA 4abc51aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7dca61b - Browse repository at this point
Copy the full SHA 7dca61bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 291ed59 - Browse repository at this point
Copy the full SHA 291ed59View commit details -
Configuration menu - View commit details
-
Copy full SHA for a0f4114 - Browse repository at this point
Copy the full SHA a0f4114View commit details -
add unit tests for extra extension feature
Signed-off-by: tison <wander4096@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 3aa2abd - Browse repository at this point
Copy the full SHA 3aa2abdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 27588d1 - Browse repository at this point
Copy the full SHA 27588d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9f66af4 - Browse repository at this point
Copy the full SHA 9f66af4View commit details
Commits on Jul 6, 2024
-
Rollup merge of rust-lang#123600 - tisonkun:path_with_extension, r=dt…
…olnay impl PathBuf::add_extension and Path::with_added_extension See the ACP for motivation and discussions - rust-lang/libs-team#368
Configuration menu - View commit details
-
Copy full SHA for f203078 - Browse repository at this point
Copy the full SHA f203078View commit details -
Rollup merge of rust-lang#127107 - mu001999-contrib:dead/enhance-2, r…
…=pnkfelix Improve dead code analysis Fixes rust-lang#120770 1. check impl items later if self ty is private although the trait method is public, cause we must use the ty firstly if it's private 2. mark the adt live if it appears in pattern, like generic argument, this implies the use of the adt 3. based on the above, we can handle the case that private adts impl Default, so that we don't need adding rustc_trivial_field_reads on Default, and the logic in should_ignore_item r? ``@pnkfelix``
Configuration menu - View commit details
-
Copy full SHA for 31fe962 - Browse repository at this point
Copy the full SHA 31fe962View commit details -
Rollup merge of rust-lang#127221 - Urgau:check-cfg-std-diag, r=pnkfelix
Improve well known value check-cfg diagnostic for the standard library This PR adjust the current logic for hidding the rustc/Cargo suggestion to add a value to a well-known name to exclude the standard library and rustc crates. This is done in order to improve the contributor experience, in particular when adding a new target, which often requires adding some cfgs like `target_os` which may not be available yet in stage0. <details> The diagnostic code would look like this. ```text error: unexpected `cfg` condition value: `blable` --> library/core/src/lib.rs:369:7 | 369 | #[cfg(target_os = "blable")] | ^^^^^^^^^^^^^^^^^^^^ | = note: expected values for `target_os` are: `aix`, `android`, `cuda`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `macos`, `netbsd`, `none`, `nto`, `openbsd`, `psp`, `redox`, `solaris`, `solid_asp3`, `teeos`, `tvos`, `uefi`, `unknown`, `visionos`, `vita`, `vxworks`, `wasi`, `watchos`, and `windows` and 2 more = help: consider using a Cargo feature instead = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(target_os, values("blable"))'] } = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(target_os, values(\"blable\"))");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration = note: `-D unexpected-cfgs` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unexpected_cfgs)]` ``` </details>
Configuration menu - View commit details
-
Copy full SHA for 865518d - Browse repository at this point
Copy the full SHA 865518dView commit details -
Rollup merge of rust-lang#127333 - compiler-errors:infer_ctxt_like-ag…
…ain, r=lcnr Split `SolverDelegate` back out from `InferCtxtLike` This is because in order to uplift things like the `Generalizer` and other `TypeRelation`s, we want to be able to interface with `InferCtxtLike` (and `InferCtxt` as its implementation), rather that `SolverDelegate`, which only really exists as a hack to be able to define some downstream methods in `rustc_type_ir`. r? lcnr
Configuration menu - View commit details
-
Copy full SHA for 16ba4b7 - Browse repository at this point
Copy the full SHA 16ba4b7View commit details -
Rollup merge of rust-lang#127363 - GuillaumeGomez:improve-fmt-code-re…
…adability, r=Amanieu Improve readability of some fmt code examples Some indent was weird. Some examples were too long (overall better to keep it to maximum 80 columns, but only changed the most outstanding ones). r? ```@Amanieu```
Configuration menu - View commit details
-
Copy full SHA for 521d451 - Browse repository at this point
Copy the full SHA 521d451View commit details -
Rollup merge of rust-lang#127366 - oli-obk:falliblevisitor, r=compile…
…r-errors Use `ControlFlow` results for visitors that are only looking for a single value These visitors all had a `Option<Value>` or `bool` field, that, once set, was never unset or modified again. They have been refactored by removing the field and returning `ControlFlow` directly from the visitor
Configuration menu - View commit details
-
Copy full SHA for a3535b9 - Browse repository at this point
Copy the full SHA a3535b9View commit details -
Rollup merge of rust-lang#127368 - YohDeadfall:dots-in-docs, r=fmease
Added dots at the sentence ends of rustc AST doc Just a tiny improvement for the AST documentation by bringing consistency to sentence ends. I intentionally didn't terminate every sentence, there are still some members not having them, but at least there's no mixing style on the type level.
Configuration menu - View commit details
-
Copy full SHA for aeb1a65 - Browse repository at this point
Copy the full SHA aeb1a65View commit details -
Rollup merge of rust-lang#127393 - clubby789:unreview, r=workingjubilee
Remove clubby789 from review rotation These days I'm unfortunately too busy to be able to take up reviews, and it looks like some PRs have been blocked on this 😓
Configuration menu - View commit details
-
Copy full SHA for b73a790 - Browse repository at this point
Copy the full SHA b73a790View commit details