You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: draft/2025-09-17-this-week-in-rust.md
+74-3Lines changed: 74 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,9 @@ and just ask the editors to select the category.
78
78
79
79
## Crate of the Week
80
80
81
-
<!-- COTW goes here -->
81
+
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.
82
+
83
+
Despite a lack of suggestions, llogiq is plenty happy with his choice.
82
84
83
85
[Please submit your suggestions and votes for next week][submit_crate]!
84
86
@@ -129,7 +131,72 @@ If you are an event organizer hoping to expand the reach of your event, please s
129
131
130
132
## Updates from the Rust Project
131
133
132
-
<!-- Rust updates go here -->
134
+
379 pull requests were [merged in the last week][merged]
*[implement `#[rustc_align_static(N)]` on `static`s](https://github.com/rust-lang/rust/pull/146178)
140
+
*[move more early buffered lints to dyn lint diagnostics](https://github.com/rust-lang/rust/pull/145881)
141
+
*[make `AssocItem` aware of its impl kind](https://github.com/rust-lang/rust/pull/145186)
142
+
*[match clang's `va_arg` assembly on arm targets](https://github.com/rust-lang/rust/pull/144549)
143
+
*[reject invalid literal suffixes in tuple indexing, tuple `struct` indexing, and `struct` field name position](https://github.com/rust-lang/rust/pull/145463)
*[`multiple_unsafe_ops_per_block`: ignore unsafe ops from `.await` desugaring](https://github.com/rust-lang/rust-clippy/pull/15654)
172
+
*[`needless_closure`: don't lint on `AsyncFn*`s](https://github.com/rust-lang/rust-clippy/pull/15649)
173
+
*[`needless_return`: fix false positive with `cfg`d code after return](https://github.com/rust-lang/rust-clippy/pull/15669)
174
+
*[`ref_option`: don't lint in external and proc-macros](https://github.com/rust-lang/rust-clippy/pull/15668)
175
+
*[`semicolon_inside_block`: don't lint if block is in parens](https://github.com/rust-lang/rust-clippy/pull/15626)
176
+
*[`use_self`: don't early-return if the outer type has no lifetimes](https://github.com/rust-lang/rust-clippy/pull/15611)
177
+
*[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)
178
+
*[fix `as_underscore` to only suggest when it's suggestable](https://github.com/rust-lang/rust-clippy/pull/15652)
0 commit comments