@@ -37,12 +37,6 @@ and just ask the editors to select the category.
37
37
38
38
-->
39
39
40
- ### Official
41
-
42
- ### Foundation
43
-
44
- ### Newsletters
45
-
46
40
### Project/Tooling Updates
47
41
* [ Seaography 2.0: A Powerful and Extensible GraphQL Framework] ( https://www.sea-ql.org/blog/2025-10-08-seaography/ )
48
42
* [ Announcing redis-rs 1.0.0 release candidate] ( https://github.com/redis-rs/redis-rs/blob/redis-1.0.0-rc.0/version1.md )
@@ -51,6 +45,7 @@ and just ask the editors to select the category.
51
45
* [ Progress on defeating lifetime-end pointer zapping] ( https://lwn.net/SubscriberLink/1038757/d613acbb48f20a20/ )
52
46
* [ Upcoming Rust language features for kernel development] ( https://lwn.net/SubscriberLink/1039073/abf96f38b178f988/ )
53
47
* [ utsuru: "Go Live" on Discord using OBS, FFmpeg, or anything that supports WHIP.] ( https://github.com/VincentVerdynanta/utsuru/releases/tag/v0.2.1 )
48
+ * [ Aladin Lite - navigate into TBs of astronomical data coming from various space missions] ( https://aladin.cds.unistra.fr/AladinLite/doc/ )
54
49
55
50
### Observations/Thoughts
56
51
* [ The Handle trait] ( https://smallcultfollowing.com/babysteps/blog/2025/10/07/the-handle-trait/ )
@@ -77,8 +72,6 @@ and just ask the editors to select the category.
77
72
* [ Let's write a macro in Rust - Part 3] ( https://hackeryarn.com/post/rust-macros-3/ )
78
73
* [ Rust/C++ Interop Part 5 - Interop in 2025: A Complete Example] ( https://tylerjw.dev/posts/20251003-rust-cpp-interop-2025-update/ )
79
74
80
- ### Research
81
-
82
75
### Miscellaneous
83
76
* [ videos] [ RustConf 2025] ( https://www.youtube.com/playlist?list=PL2b0df3jKKiRFEuVNk76ufXagOgEJ9sBZ )
84
77
* [ audio] [ Prime Video - Alexandru Ene, Principal Engineer] ( https://corrode.dev/podcast/s05e01-prime-video/ )
@@ -153,23 +146,25 @@ If you are an event organizer hoping to expand the reach of your event, please s
153
146
154
147
[ merged ] : https://github.com/search?q=is%3Apr+org%3Arust-lang+is%3Amerged+merged%3A2025-09-30..2025-10-07
155
148
156
- #### Compiler
149
+ #### Compiler
157
150
* [ add a dummy codegen backend] ( https://github.com/rust-lang/rust/pull/146596 )
158
151
* [ don't normalize higher-ranked assumptions if they're not used] ( https://github.com/rust-lang/rust/pull/147299 )
159
152
* [ extending ` #[rustc_force_inline] ` to be applicable to inherent methods] ( https://github.com/rust-lang/rust/pull/147231 )
160
153
* [ fix the bevy implied bounds hack for the next solver] ( https://github.com/rust-lang/rust/pull/147184 )
161
154
* [ Global Value Numbering: support unions] ( https://github.com/rust-lang/rust/pull/146355 )
162
155
* [ Global Value Numbering: use a VnIndex in Address projection] ( https://github.com/rust-lang/rust/pull/144477 )
163
156
* [ miri: add support for temporal mixing of atomic and non-atomic accesses in GenMC mode] ( https://github.com/rust-lang/miri/pull/4611 )
164
- #### Library
157
+
158
+ #### Library
165
159
* [ add ` CloneFromCell ` and ` Cell::get_cloned ` ] ( https://github.com/rust-lang/rust/pull/145685 )
166
160
* [ add ` Path::has_trailing_sep ` and related methods] ( https://github.com/rust-lang/rust/pull/142506 )
167
161
* [ add ` mem::conjure_zst ` ] ( https://github.com/rust-lang/rust/pull/146479 )
168
162
* [ add fast-path for accessing the current thread id] ( https://github.com/rust-lang/rust/pull/143069 )
169
163
* [ implement ` Box::take ` ] ( https://github.com/rust-lang/rust/pull/147227 )
170
164
* [ implement non-poisoning ` Mutex::with_mut ` , ` RwLock::with ` and ` RwLock::with_mut ` ] ( https://github.com/rust-lang/rust/pull/147328 )
171
165
* [ hashbrown: recognize and use over sized allocations] ( https://github.com/rust-lang/hashbrown/pull/523 )
172
- #### Cargo
166
+
167
+ #### Cargo
173
168
* [ ` fix(run) ` : Override arg0 for cargo scripts] ( https://github.com/rust-lang/cargo/pull/16027 )
174
169
* [ ` fix(timings) ` : compute codegen start time to draw dep lines] ( https://github.com/rust-lang/cargo/pull/16055 )
175
170
* [ ` fix(toml) ` : Prevent non-script fields in Cargo scripts] ( https://github.com/rust-lang/cargo/pull/16026 )
@@ -185,9 +180,11 @@ If you are an event organizer hoping to expand the reach of your event, please s
185
180
* [ public in private manifest errors] ( https://github.com/rust-lang/cargo/pull/16002 )
186
181
* [ recommend ` package.rust-version ` in the Rust version section of ` reference/semver.md ` ] ( https://github.com/rust-lang/cargo/pull/15806 )
187
182
* [ test: null-terminated path for reserved windows name detection] ( https://github.com/rust-lang/cargo/pull/16052 )
188
- #### Rustdoc
183
+
184
+ #### Rustdoc
189
185
* [ replace ` rustc_span::Span ` with a stripped down version for librustdoc's highlighter] ( https://github.com/rust-lang/rust/pull/147189 )
190
- #### Clippy
186
+
187
+ #### Clippy
191
188
* [ ` assertions_on_constants ` : Suggest using a const block when using a named constant] ( https://github.com/rust-lang/rust-clippy/pull/15774 )
192
189
* [ ` zero_repeat_side_effects ` : better identify exprs with side effects] ( https://github.com/rust-lang/rust-clippy/pull/15814 )
193
190
* [ const eval changes] ( https://github.com/rust-lang/rust-clippy/pull/15773 )
@@ -198,7 +195,8 @@ If you are an event organizer hoping to expand the reach of your event, please s
198
195
* [ fix ` let_unit_value ` suggests wrongly for field init shorthand] ( https://github.com/rust-lang/rust-clippy/pull/15791 )
199
196
* [ fix ` mem_replace_with_default ` wrongly unmangled macros] ( https://github.com/rust-lang/rust-clippy/pull/15786 )
200
197
* [ implement ` volatile_composites ` lint] ( https://github.com/rust-lang/rust-clippy/pull/15686 )
201
- #### Rust-Analyzer
198
+
199
+ #### Rust-Analyzer
202
200
* [ make rust-analyzer use a dedicated build directory] ( https://github.com/rust-lang/rust/pull/141839 )
203
201
* [ deduplicate sort+dedup calls] ( https://github.com/rust-lang/rust-analyzer/pull/20794 )
204
202
* [ log flycheck stdout and stderr to files] ( https://github.com/rust-lang/rust-analyzer/pull/20806 )
@@ -426,7 +424,7 @@ https://github.com/rust-lang/this-week-in-rust/issues/3412
426
424
427
425
-->
428
426
429
- Please see the latest [ Who's Hiring thread on r/rust] ( INSERT_LINK_HERE )
427
+ 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/ )
430
428
431
429
# Quote of the Week
432
430
@@ -442,4 +440,4 @@ Thanks to [llogiq](https://users.rust-lang.org/t/twir-quote-of-the-week/328/1720
442
440
443
441
* Email list hosting is sponsored by [ The Rust Foundation] ( https://foundation.rust-lang.org/ ) *
444
442
445
- <small >[ Discuss on r/rust] ( REDDIT_LINK_HERE ) </small >
443
+ <small >[ Discuss on r/rust] ( https://www.reddit.com/r/rust/comments/1o1uqur/this_week_in_rust_620/ ) </small >
0 commit comments