Skip to content

Commit f26a8dc

Browse files
committed
C/QotW and notable changes
1 parent 1165169 commit f26a8dc

File tree

1 file changed

+54
-3
lines changed

1 file changed

+54
-3
lines changed

draft/2025-08-06-this-week-in-rust.md

Lines changed: 54 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ and just ask the editors to select the category.
5050

5151
## Crate of the Week
5252

53-
<!-- COTW goes here -->
53+
This week's crate is [saphyr](https://crates.io/crates/saphyr), an actively maintained fork of yaml-rust.
54+
55+
Thanks to [Félix Saparelli](https://users.rust-lang.org/t/crate-of-the-week/2704/1458) for the suggestion!
5456

5557
[Please submit your suggestions and votes for next week][submit_crate]!
5658

@@ -132,7 +134,52 @@ If you are an event organizer hoping to expand the reach of your event, please s
132134

133135
## Updates from the Rust Project
134136

135-
<!-- Rust updates go here -->
137+
406 pull requests were [merged in the last week][merged]
138+
139+
[merged]: https://github.com/search?q=is%3Apr+org%3Arust-lang+is%3Amerged+merged%3A2025-07-29..2025-08-05
140+
141+
#### Compiler
142+
* [complete span AST lowering](https://github.com/rust-lang/rust/pull/144557)
143+
* [expand WF obligations when checking method calls](https://github.com/rust-lang/rust/pull/144704)
144+
* [optimize region constraints](https://github.com/rust-lang/rust/pull/144446)
145+
* [perform `check_private_in_public` by module](https://github.com/rust-lang/rust/pull/144479)
146+
147+
#### Library
148+
* [add `core::mem::DropGuard`](https://github.com/rust-lang/rust/pull/144236)
149+
* [constify `with_exposed_provenance`](https://github.com/rust-lang/rust/pull/144539)
150+
* [constify some more `Result` functions](https://github.com/rust-lang/rust/pull/143771)
151+
* [mark `slice::swap_with_slice` unstably const](https://github.com/rust-lang/rust/pull/142205)
152+
* [implement `push_mut`](https://github.com/rust-lang/rust/pull/135975)
153+
* [implement `hash_map` macro](https://github.com/rust-lang/rust/pull/144070)
154+
* [implementation: `#[feature(sync_nonpoison)]`, `#[feature(nonpoison_mutex)]`](https://github.com/rust-lang/rust/pull/144022)
155+
156+
#### Rustdoc
157+
* [Display total time and compilation time of merged doctests](https://github.com/rust-lang/rust/pull/144308)
158+
* [Display unsafe attrs with edition 2024 `unsafe()` wrappers](https://github.com/rust-lang/rust/pull/143662)
159+
160+
#### Clippy
161+
* [`{flat_,}map_identity`: recognize (tuple) `struct` de- and restructuring](https://github.com/rust-lang/rust-clippy/pull/15261)
162+
* [extend `implicit_clone` to handle `to_string` calls](https://github.com/rust-lang/rust-clippy/pull/14177)
163+
* [fix `iter_on_single_items` false positive on function pointers and let stmts](https://github.com/rust-lang/rust-clippy/pull/15013)
164+
* [fix `min_ident_chars`: ignore on trait impl](https://github.com/rust-lang/rust-clippy/pull/15275)
165+
* [fix `search_is_some` suggests wrongly inside macro](https://github.com/rust-lang/rust-clippy/pull/15135)
166+
* [fix not showing deprecated lints](https://github.com/rust-lang/rust-clippy/pull/15407)
167+
* [fix option-if-let-else lint](https://github.com/rust-lang/rust-clippy/pull/15394)
168+
* [`let_with_type_underscore`: don't eat closing paren in `let (i): _ = 0;`](https://github.com/rust-lang/rust-clippy/pull/15386)
169+
* [optimize `broken_links` by 99.77%](https://github.com/rust-lang/rust-clippy/pull/15385)
170+
* [optimize some usages of `!!` and `--` in suggestions](https://github.com/rust-lang/rust-clippy/pull/15366)
171+
* [simplify boolean expression in `manual_assert`](https://github.com/rust-lang/rust-clippy/pull/15368)
172+
* [split `possible_missing_else` from `suspicious_else_formatting`](https://github.com/rust-lang/rust-clippy/pull/15317)
173+
174+
#### Rust-Analyzer
175+
* [when renaming a parameter to `self`, change callers to use method call syntax](https://github.com/rust-lang/rust-analyzer/pull/20351)
176+
* [fix gen panics doc template for `debug_assert`](https://github.com/rust-lang/rust-analyzer/pull/20300)
177+
* [correctly goto `From` impl when on `into()` even when the call is inside a macro](https://github.com/rust-lang/rust-analyzer/pull/20382)
178+
* [do not require all rename definitions to be renameable](https://github.com/rust-lang/rust-analyzer/pull/20333)
179+
* [in `generate_mut_trait_impl,` don't add a tabstop if the client does not support snippets](https://github.com/rust-lang/rust-analyzer/pull/20336)
180+
* [when displaying a projection into a type parameter that has bounds as `impl Trait`, collect only the bounds of this projection](https://github.com/rust-lang/rust-analyzer/pull/20337)
181+
* [improve settings tree title and descriptions](https://github.com/rust-lang/rust-analyzer/pull/20154)
182+
* [reorganize proc-macro-srv more, add `--format` and `--version` args](https://github.com/rust-lang/rust-analyzer/pull/20342)
136183

137184
### Rust Compiler Performance Triage
138185

@@ -330,7 +377,11 @@ Please see the latest [Who's Hiring thread on r/rust](INSERT_LINK_HERE)
330377

331378
# Quote of the Week
332379

333-
<!-- QOTW goes here -->
380+
> In addition to rewriting the tools in Rust, a safer language, some little-used features of sudo were not implemented in order to reduce vulnerability surface area. This turned out to be meaningful in July of 2025 when two vulnerabilities (..) were discovered in sudo features not implemented in sudo-rs. In response to one of those, sudo has deprecated and will remove the feature hosting the vulnerability.
381+
382+
[Josh Aas on the prossimo blog](https://www.memorysafety.org/blog/sudo-rs-headed-to-ubuntu)
383+
384+
Thanks to [llogiq](https://users.rust-lang.org/t/twir-quote-of-the-week/328/1708) for the suggestion!
334385

335386
[Please submit quotes and vote for next week!](https://users.rust-lang.org/t/twir-quote-of-the-week/328)
336387

0 commit comments

Comments
 (0)