Skip to content

Commit 02fd3b9

Browse files
committed
C/QotW and notable changes
1 parent bf0ab77 commit 02fd3b9

File tree

1 file changed

+74
-3
lines changed

1 file changed

+74
-3
lines changed

draft/2025-09-17-this-week-in-rust.md

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

6767
## Crate of the Week
6868

69-
<!-- COTW goes here -->
69+
This week's crate is [asciinema](https://crates.io/crates/asciinema), a well-known command-line tool for recording, replaying and streaming terminal sessions recently rewritten in Rust.
70+
71+
Despite a lack of suggestions, llogiq is plenty happy with his choice.
7072

7173
[Please submit your suggestions and votes for next week][submit_crate]!
7274

@@ -149,7 +151,72 @@ If you are an event organizer hoping to expand the reach of your event, please s
149151

150152
## Updates from the Rust Project
151153

152-
<!-- Rust updates go here -->
154+
379 pull requests were [merged in the last week][merged]
155+
156+
[merged]: https://github.com/search?q=is%3Apr+org%3Arust-lang+is%3Amerged+merged%3A2025-09-09..2025-09-16
157+
158+
#### Compiler
159+
* [implement `#[rustc_align_static(N)]` on `static`s](https://github.com/rust-lang/rust/pull/146178)
160+
* [move more early buffered lints to dyn lint diagnostics](https://github.com/rust-lang/rust/pull/145881)
161+
* [make `AssocItem` aware of its impl kind](https://github.com/rust-lang/rust/pull/145186)
162+
* [match clang's `va_arg` assembly on arm targets](https://github.com/rust-lang/rust/pull/144549)
163+
* [reject invalid literal suffixes in tuple indexing, tuple `struct` indexing, and `struct` field name position](https://github.com/rust-lang/rust/pull/145463)
164+
* [sort array trait implementation suggestions correctly](https://github.com/rust-lang/rust/pull/146403)
165+
* [strip frontmatter in fewer places](https://github.com/rust-lang/rust/pull/146340)
166+
* [miri: fix release/scquire synchonization for loads from the store buffer](https://github.com/rust-lang/miri/pull/4577)
167+
* [miri: make a basic hello world work on wasip2](https://github.com/rust-lang/miri/pull/4582)
168+
169+
#### Library
170+
* [constify Eq, Ord, PartialOrd](https://github.com/rust-lang/rust/pull/144847)
171+
* [implement `Sum` and `Product` for `f16` and `f128`](https://github.com/rust-lang/rust/pull/146300)
172+
* [inclusive `Range`s: change `end` to `last`](https://github.com/rust-lang/rust/pull/144765)
173+
* [make `Barrier` `RefUnwindSafe` again](https://github.com/rust-lang/rust/pull/146322)
174+
* [stabilize `BTree{Map,Set}::extract_if`](https://github.com/rust-lang/rust/pull/145471)
175+
* [support integer literals in `${concat()}`](https://github.com/rust-lang/rust/pull/146308)
176+
177+
#### Cargo
178+
* [cli: Allow completions for third-party subcommand names](https://github.com/rust-lang/cargo/pull/15961)
179+
* [completer: Added completion for `--features` flag](https://github.com/rust-lang/cargo/pull/15309)
180+
* [complete: Show local crates/features over other members](https://github.com/rust-lang/cargo/pull/15956)
181+
* [frontmatter: Try alternative len code fences](https://github.com/rust-lang/cargo/pull/15952)
182+
* [manifest: Show error source to users](https://github.com/rust-lang/cargo/pull/15939)
183+
* [publish: Switch the 'ctrl-c on wait' line to a help message](https://github.com/rust-lang/cargo/pull/15942)
184+
185+
#### Rustdoc
186+
* [Correctly handle literal search on paths](https://github.com/rust-lang/rust/pull/146448)
187+
188+
#### Clippy
189+
* [`elidable_lifetime_names`: avoid overlapping spans in suggestions](https://github.com/rust-lang/rust-clippy/pull/15667)
190+
* [`len_zero`: don't eagerly call `GenericArgs::type_at`](https://github.com/rust-lang/rust-clippy/pull/15660)
191+
* [`multiple_unsafe_ops_per_block`: ignore unsafe ops from `.await` desugaring](https://github.com/rust-lang/rust-clippy/pull/15654)
192+
* [`needless_closure`: don't lint on `AsyncFn*`s](https://github.com/rust-lang/rust-clippy/pull/15649)
193+
* [`needless_return`: fix false positive with `cfg`d code after return](https://github.com/rust-lang/rust-clippy/pull/15669)
194+
* [`ref_option`: don't lint in external and proc-macros](https://github.com/rust-lang/rust-clippy/pull/15668)
195+
* [`semicolon_inside_block`: don't lint if block is in parens](https://github.com/rust-lang/rust-clippy/pull/15626)
196+
* [`use_self`: don't early-return if the outer type has no lifetimes](https://github.com/rust-lang/rust-clippy/pull/15611)
197+
* [add suggestion to `cast_sign_loss` and `cast_possible_wrap` using the `cast_{un,}signed()` methods](https://github.com/rust-lang/rust-clippy/pull/15384)
198+
* [fix `as_underscore` to only suggest when it's suggestable](https://github.com/rust-lang/rust-clippy/pull/15652)
199+
* [fix `invalid_upcast_comparisons` wrongly unmangled macros](https://github.com/rust-lang/rust-clippy/pull/15663)
200+
* [fix `useless_attribute` false positive on `deprecated_in_future`](https://github.com/rust-lang/rust-clippy/pull/15645)
201+
* [recognize canonical `?` pattern with `Result`](https://github.com/rust-lang/rust-clippy/pull/15680)
202+
203+
#### Rust-Analyzer
204+
* [add more workaround hacks for incorrect startup diagnostics](https://github.com/rust-lang/rust-analyzer/pull/20402)
205+
* [fix `LifetimeParam::lifetime_bounds` invalid implement](https://github.com/rust-lang/rust-analyzer/pull/20624)
206+
* [fix extra semicolon before else in let-stmt](https://github.com/rust-lang/rust-analyzer/pull/20657)
207+
* [fix indent for `unresolved_field` fixes](https://github.com/rust-lang/rust-analyzer/pull/20613)
208+
* [always coerce in a cast, even when there are unknown types](https://github.com/rust-lang/rust-analyzer/pull/20649)
209+
* [don't mark unknown type as implementing every notable trait](https://github.com/rust-lang/rust-analyzer/pull/20665)
210+
* [don't output an empty generic parameters list in `generate_function`](https://github.com/rust-lang/rust-analyzer/pull/20653)
211+
* [don't trigger two flychecks when saving files that are part of targets](https://github.com/rust-lang/rust-analyzer/pull/20635)
212+
* [fix expand macro recursively not working correctly for nested macro calls](https://github.com/rust-lang/rust-analyzer/pull/20612)
213+
* [fix normalization in the new solver](https://github.com/rust-lang/rust-analyzer/pull/20647)
214+
* [infinite loop while elaborting predicates](https://github.com/rust-lang/rust-analyzer/pull/20654)
215+
* [make `#[target_feature]` always safe on WASM](https://github.com/rust-lang/rust-analyzer/pull/20642)
216+
* [more precise clause filtering for `explicit_*_predicates_of`](https://github.com/rust-lang/rust-analyzer/pull/20671)
217+
* [only compute unstable paths on nightly toolchains for IDE features](https://github.com/rust-lang/rust-analyzer/pull/20517)
218+
* [resolve paths to snapshot test libraries absolutely](https://github.com/rust-lang/rust-analyzer/pull/20639)
219+
* [migrate `InferenceTable` into next-solver](https://github.com/rust-lang/rust-analyzer/pull/20578)
153220

154221
### Rust Compiler Performance Triage
155222

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

344411
# Quote of the Week
345412

346-
<!-- QOTW goes here -->
413+
> **Real Question:** is an array a struct/tuple, or is it an enum?
414+
415+
[Lokathor on github](https://github.com/rust-lang/rust/pull/146509#discussion_r2346807413)
416+
417+
Thanks to [Theemathas](https://users.rust-lang.org/t/twir-quote-of-the-week/328/1716) for the suggestion!
347418

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

0 commit comments

Comments
 (0)