Skip to content

Commit e25e943

Browse files
authored
Merge pull request #7099 from rust-lang/publish-619
Publish 619
2 parents 0b74deb + 7c6c90a commit e25e943

File tree

2 files changed

+367
-14
lines changed

2 files changed

+367
-14
lines changed

draft/2025-10-01-this-week-in-rust.md renamed to content/2025-10-01-this-week-in-rust.md

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ and just ask the editors to select the category.
4141
* [The next Rust All Hands](https://blog.rust-lang.org/inside-rust/2025/09/30/all-hands-2026/)
4242
* [This Development-cycle in Cargo: 1.90](https://blog.rust-lang.org/inside-rust/2025/10/01/this-development-cycle-in-cargo-1.90/)
4343

44-
### Foundation
45-
4644
### Newsletters
4745
* [The Embedded Rustacean Issue #55](https://www.theembeddedrustacean.com/p/the-embedded-rustacean-issue-55)
4846

@@ -71,8 +69,6 @@ and just ask the editors to select the category.
7169
* [Level Up your Rust pattern matching](https://blog.cuongle.dev/p/level-up-your-rust-pattern-matching)
7270
* [video] [Sguaba: Type-safe spatial math in Rust](https://www.youtube.com/watch?v=kESBAiTYMoQ)
7371

74-
### Research
75-
7672
### Miscellaneous
7773
* [Cloudflare just got faster and more secure, powered by Rust](https://blog.cloudflare.com/20-percent-internet-upgrade/)
7874
* [Rust: Who, What and Why for ESA SW PA Workshop](https://ferrous-systems.com/blog/rust-who-what-why/)
@@ -95,7 +91,7 @@ If you are a feature implementer and would like your RFC to appear in this list,
9591
`call-for-testing` label to your RFC along with a comment providing testing instructions and/or
9692
guidance on which aspect(s) of the feature need testing.
9793

98-
[Rust](https://github.com/rust-lang/rust/labels/call-for-testing),
94+
[Rust](https://github.com/rust-lang/rust/labels/call-for-testing)
9995

10096
* [FR: Add a --fail-fast option to libtest](https://github.com/rust-lang/rust/issues/142859)
10197
* [Testing instructions](https://github.com/rust-lang/rust/issues/142859#issuecomment-3339090064)
@@ -134,7 +130,7 @@ If you are a Rust project owner and are looking for contributors, please submit
134130
Are you a new or experienced speaker looking for a place to share something cool? This section highlights events that are being planned and are accepting submissions to join their event as a speaker.
135131

136132
<!-- CFPs go here, use this format: * [**event name**](URL to CFP)| Date CFP closes in YYYY-MM-DD | city,state,country | Date of event in YYYY-MM-DD -->
137-
<!-- or if none - *No Calls for papers or presentations were submitted this week.* -->
133+
*No Calls for papers or presentations were submitted this week.*
138134

139135
If you are an event organizer hoping to expand the reach of your event, please submit a link to the website through a [PR to TWiR](https://github.com/rust-lang/this-week-in-rust) or by reaching out on [X (formerly Twitter)](https://x.com/ThisWeekInRust) or [Mastodon](https://mastodon.social/@thisweekinrust)!
140136

@@ -144,7 +140,7 @@ If you are an event organizer hoping to expand the reach of your event, please s
144140

145141
[merged]: https://github.com/search?q=is%3Apr+org%3Arust-lang+is%3Amerged+merged%3A2025-09-23..2025-09-30
146142

147-
#### Compiler
143+
#### Compiler
148144
* [add an attribute to check the number of lanes in a SIMD vector after monomorphization](https://github.com/rust-lang/rust/pull/146667)
149145
* [add panic=immediate-abort](https://github.com/rust-lang/rust/pull/146317)
150146
* [skip stack overflow handler for panic=immediate-abort](https://github.com/rust-lang/rust/pull/147090)
@@ -154,7 +150,7 @@ If you are an event organizer hoping to expand the reach of your event, please s
154150
* [do not compute optimized MIR if code does not type-check](https://github.com/rust-lang/rust/pull/147092)
155151
* [do not materialise X in `[X; 0]` when X is unsizing a const](https://github.com/rust-lang/rust/pull/145277)
156152
* [improve diagnostics for empty attributes](https://github.com/rust-lang/rust/pull/146653)
157-
#### Library
153+
#### Library
158154
* [BTreeMap: don't leak allocators when initializing nodes](https://github.com/rust-lang/rust/pull/146859)
159155
* [constify {`Mutex`, `RwLock`, `ReentrantLock`}`::data_ptr`](https://github.com/rust-lang/rust/pull/146904)
160156
* [constify Default on Nanoseconds](https://github.com/rust-lang/rust/pull/146979)
@@ -164,20 +160,20 @@ If you are an event organizer hoping to expand the reach of your event, please s
164160
* [fix infinite recursion in `Path::eq` with String](https://github.com/rust-lang/rust/pull/146958)
165161
* [implement `hostname`](https://github.com/rust-lang/rust/pull/146937)
166162
* [remove most `#[track_caller]` from allocating Vec methods](https://github.com/rust-lang/rust/pull/147042)
167-
#### Cargo
163+
#### Cargo
168164
* [config: combine key error context into one](https://github.com/rust-lang/cargo/pull/16004)
169165
* [shell: Use a distinct style for transient status](https://github.com/rust-lang/cargo/pull/16019)
170166
* [add retry for `git fetch` failures in `CARGO_NET_GIT_FETCH_WITH_CLI` path](https://github.com/rust-lang/cargo/pull/16016)
171167
* [better error message for rust version incompatibility](https://github.com/rust-lang/cargo/pull/16021)
172168
* [sparse URLs in `TomlLockfileSourceId`](https://github.com/rust-lang/cargo/pull/15990)
173169
* [use `host-tuple` for host target subsitution](https://github.com/rust-lang/cargo/pull/16003)
174-
#### Rustdoc
170+
#### Rustdoc
175171
* [Add support for associated items in "jump to def" feature](https://github.com/rust-lang/rust/pull/135771)
176172
* [add rustdoc `doc_cfg` features](https://github.com/rust-lang/rust/pull/138907) (RFC [#3631](https://rust-lang.github.io/rfcs/3631-rustdoc-cfgs-handling.html))
177173
* [search: use the same ID for entry and path to same item](https://github.com/rust-lang/rust/pull/147045)
178174
* [hide `#[repr]` if it isn't part of the public ABI](https://github.com/rust-lang/rust/pull/116882)
179175
* [put the toolbar on the all item index](https://github.com/rust-lang/rust/pull/147047)
180-
#### Clippy
176+
#### Clippy
181177
* [`double_parens`: add structured suggestions, fix bug](https://github.com/rust-lang/rust-clippy/pull/15420)
182178
* [`filter_next`: check for `filter().next_back()`](https://github.com/rust-lang/rust-clippy/pull/15748)
183179
* [`collapsible`(`_else`)`_if`: respect `#[expect]` on inner `if`](https://github.com/rust-lang/rust-clippy/pull/15647)
@@ -191,7 +187,7 @@ If you are an event organizer hoping to expand the reach of your event, please s
191187
* [overhaul `mut_mut`](https://github.com/rust-lang/rust-clippy/pull/15417)
192188
* [refactor `module_style`](https://github.com/rust-lang/rust-clippy/pull/15469)
193189
* [rename `unchecked_duration_subtraction` to `unchecked_time_subtraction` and check for `Duration - Duration`](https://github.com/rust-lang/rust-clippy/pull/13800)
194-
#### Rust-Analyzer
190+
#### Rust-Analyzer
195191
* [add `all`, `any` and `not` completions in `#[cfg]`](https://github.com/rust-lang/rust-analyzer/pull/20760)
196192
* [add `cfg_attr` predicate completion](https://github.com/rust-lang/rust-analyzer/pull/20604)
197193
* [add applicable on bang `!` for `apply_demorgan`](https://github.com/rust-lang/rust-analyzer/pull/20599)
@@ -419,7 +415,7 @@ https://github.com/rust-lang/this-week-in-rust/issues/3412
419415
420416
-->
421417

422-
Please see the latest [Who's Hiring thread on r/rust](INSERT_LINK_HERE)
418+
Please see the latest [Who's Hiring thread on r/rust](https://www.reddit.com/r/rust/comments/1nknaii/official_rrust_whos_hiring_thread_for_jobseekers/)
423419

424420
# Quote of the Week
425421

@@ -435,4 +431,4 @@ Thanks to [Riking](https://users.rust-lang.org/t/twir-quote-of-the-week/328/1719
435431

436432
*Email list hosting is sponsored by [The Rust Foundation](https://foundation.rust-lang.org/)*
437433

438-
<small>[Discuss on r/rust](REDDIT_LINK_HERE)</small>
434+
<small>[Discuss on r/rust](https://www.reddit.com/r/rust/comments/1nvpd2x/this_week_in_rust_619/)</small>

0 commit comments

Comments
 (0)