Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
4304b7b
add rdg push git config entry for git protocol pushers (again)
tshepang Jul 21, 2025
c8ef211
already documented elsewhere
tshepang Jul 21, 2025
ff2bfe0
Merge pull request #2514 from rust-lang/tshepang/for-ssh-protocol
Kobzol Jul 21, 2025
9ae298c
typo
tshepang Jul 21, 2025
44bec00
Merge pull request #2515 from rust-lang/tshepang-patch-1
tshepang Jul 21, 2025
acb0e71
Make lints work with `allow_internal_unstable`
Jules-Bertholet Oct 30, 2023
6c96e7a
Update josh sync documentation
Kobzol Jul 23, 2025
8a1b20e
Disable non_exhaustive_omitted_patterns within matches! macro
jplatte Jul 22, 2025
0e30629
Add regression test for matches! + non_exhaustive_omitted_patterns lint
jplatte Jul 23, 2025
78fc7c3
Suggest unwrapping when private method name is available in inner type
estebank Jul 23, 2025
1115345
Prepare for merging from rust-lang/rust
invalid-email-address Jul 24, 2025
e5b1e7d
Merge ref 'efd420c770bb' from rust-lang/rust
invalid-email-address Jul 24, 2025
1ecb68d
Merge pull request #2517 from Kobzol/josh-sync
Kobzol Jul 24, 2025
a2b3d81
Call `is_parsed_attribute` rather than keeping track of a list of par…
JonathanBrouwer Jul 24, 2025
97676e6
Allow setting `release-blog-post` label with rustbot
BoxyUwU Jul 24, 2025
e69303f
Merge pull request #2518 from rust-lang/rustc-pull
tshepang Jul 25, 2025
cf4d793
Limit defaultness to impl of trait
camsteffen Jul 24, 2025
b96f238
rename ext_tool_checks to extra_checks and use mod.rs
lolbinarycat Jul 25, 2025
e01753d
change_tracker: fix a typo
ognevny Jul 25, 2025
4ef18ab
Allow pretty printing paths with `-Zself-profile-events=args`
Kobzol Jul 25, 2025
25ed288
Update mir-opt expected output for matches! macro
jplatte Jul 25, 2025
2c65790
resolve: Minimize borrow scopes for `resolutions`
petrochenkov Jul 25, 2025
e820112
resolve: Do not create `NameResolution`s on access unless necessary
petrochenkov Jul 25, 2025
c9541a2
Rollup merge of #144331 - jplatte:matches-allow-non_exhaustive_omitte…
matthiaskrgr Jul 26, 2025
43096cc
Rollup merge of #144376 - estebank:issue-143795, r=lcnr
matthiaskrgr Jul 26, 2025
b2659bf
Rollup merge of #144421 - JonathanBrouwer:cleanup-malformed-list, r=o…
matthiaskrgr Jul 26, 2025
86fbbb8
Rollup merge of #144424 - BoxyUwU:release_blog_post_unauthorized_user…
matthiaskrgr Jul 26, 2025
d2d002e
Rollup merge of #144427 - lolbinarycat:tidy-extra_checks-rename, r=Ko…
matthiaskrgr Jul 26, 2025
e2a5862
Rollup merge of #144435 - tshepang:rdg-sync, r=jieyouxu
matthiaskrgr Jul 26, 2025
d88aa06
Rollup merge of #144448 - camsteffen:defaultness-impl-trait-only, r=c…
matthiaskrgr Jul 26, 2025
576af9b
Rollup merge of #144462 - Kobzol:pretty-print-self-profile-args, r=Ra…
matthiaskrgr Jul 26, 2025
093d726
Rollup merge of #144463 - ognevny:change-tracker-typo, r=Kobzol
matthiaskrgr Jul 26, 2025
429cc9a
Rollup merge of #144468 - petrochenkov:resolution, r=lqd,SparrowLii
matthiaskrgr Jul 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
rename ext_tool_checks to extra_checks and use mod.rs
this makes the triagebot pings for this module simpler
  • Loading branch information
lolbinarycat committed Jul 25, 2025
commit b96f238308aa892825d6d75e359232e99f61b4a4
2 changes: 1 addition & 1 deletion src/tools/tidy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ pub mod debug_artifacts;
pub mod deps;
pub mod edition;
pub mod error_codes;
pub mod ext_tool_checks;
pub mod extdeps;
pub mod extra_checks;
pub mod features;
pub mod filenames;
pub mod fluent_alphabetical;
Expand Down
2 changes: 1 addition & 1 deletion src/tools/tidy/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ fn main() {
check!(unstable_book, &src_path, collected);

check!(
ext_tool_checks,
extra_checks,
&root_path,
&output_directory,
&ci_info,
Expand Down
2 changes: 1 addition & 1 deletion triagebot.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@ cc = ["@jieyouxu"]
message = "The list of allowed third-party dependencies may have been modified! You must ensure that any new dependencies have compatible licenses before merging."
cc = ["@davidtwco", "@wesleywiser"]

[mentions."src/tools/tidy/src/ext_tool_checks.rs"]
[mentions."src/tools/tidy/src/extra_checks"]
message = "`tidy` extra checks were modified."
cc = ["@lolbinarycat"]

Expand Down
Loading