@@ -37,12 +37,6 @@ and just ask the editors to select the category.
3737
3838-->
3939
40- ### Official
41-
42- ### Foundation
43-
44- ### Newsletters
45-
4640### Project/Tooling Updates
4741* [ Seaography 2.0: A Powerful and Extensible GraphQL Framework] ( https://www.sea-ql.org/blog/2025-10-08-seaography/ )
4842* [ 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.
5145* [ Progress on defeating lifetime-end pointer zapping] ( https://lwn.net/SubscriberLink/1038757/d613acbb48f20a20/ )
5246* [ Upcoming Rust language features for kernel development] ( https://lwn.net/SubscriberLink/1039073/abf96f38b178f988/ )
5347* [ 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/ )
5449
5550### Observations/Thoughts
5651* [ 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.
7772* [ Let's write a macro in Rust - Part 3] ( https://hackeryarn.com/post/rust-macros-3/ )
7873* [ Rust/C++ Interop Part 5 - Interop in 2025: A Complete Example] ( https://tylerjw.dev/posts/20251003-rust-cpp-interop-2025-update/ )
7974
80- ### Research
81-
8275### Miscellaneous
8376* [ videos] [ RustConf 2025] ( https://www.youtube.com/playlist?list=PL2b0df3jKKiRFEuVNk76ufXagOgEJ9sBZ )
8477* [ 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
153146
154147[ merged ] : https://github.com/search?q=is%3Apr+org%3Arust-lang+is%3Amerged+merged%3A2025-09-30..2025-10-07
155148
156- #### Compiler
149+ #### Compiler
157150* [ add a dummy codegen backend] ( https://github.com/rust-lang/rust/pull/146596 )
158151* [ don't normalize higher-ranked assumptions if they're not used] ( https://github.com/rust-lang/rust/pull/147299 )
159152* [ extending ` #[rustc_force_inline] ` to be applicable to inherent methods] ( https://github.com/rust-lang/rust/pull/147231 )
160153* [ fix the bevy implied bounds hack for the next solver] ( https://github.com/rust-lang/rust/pull/147184 )
161154* [ Global Value Numbering: support unions] ( https://github.com/rust-lang/rust/pull/146355 )
162155* [ Global Value Numbering: use a VnIndex in Address projection] ( https://github.com/rust-lang/rust/pull/144477 )
163156* [ 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
165159* [ add ` CloneFromCell ` and ` Cell::get_cloned ` ] ( https://github.com/rust-lang/rust/pull/145685 )
166160* [ add ` Path::has_trailing_sep ` and related methods] ( https://github.com/rust-lang/rust/pull/142506 )
167161* [ add ` mem::conjure_zst ` ] ( https://github.com/rust-lang/rust/pull/146479 )
168162* [ add fast-path for accessing the current thread id] ( https://github.com/rust-lang/rust/pull/143069 )
169163* [ implement ` Box::take ` ] ( https://github.com/rust-lang/rust/pull/147227 )
170164* [ implement non-poisoning ` Mutex::with_mut ` , ` RwLock::with ` and ` RwLock::with_mut ` ] ( https://github.com/rust-lang/rust/pull/147328 )
171165* [ hashbrown: recognize and use over sized allocations] ( https://github.com/rust-lang/hashbrown/pull/523 )
172- #### Cargo
166+
167+ #### Cargo
173168* [ ` fix(run) ` : Override arg0 for cargo scripts] ( https://github.com/rust-lang/cargo/pull/16027 )
174169* [ ` fix(timings) ` : compute codegen start time to draw dep lines] ( https://github.com/rust-lang/cargo/pull/16055 )
175170* [ ` 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
185180* [ public in private manifest errors] ( https://github.com/rust-lang/cargo/pull/16002 )
186181* [ recommend ` package.rust-version ` in the Rust version section of ` reference/semver.md ` ] ( https://github.com/rust-lang/cargo/pull/15806 )
187182* [ test: null-terminated path for reserved windows name detection] ( https://github.com/rust-lang/cargo/pull/16052 )
188- #### Rustdoc
183+
184+ #### Rustdoc
189185* [ 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
191188* [ ` assertions_on_constants ` : Suggest using a const block when using a named constant] ( https://github.com/rust-lang/rust-clippy/pull/15774 )
192189* [ ` zero_repeat_side_effects ` : better identify exprs with side effects] ( https://github.com/rust-lang/rust-clippy/pull/15814 )
193190* [ 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
198195* [ fix ` let_unit_value ` suggests wrongly for field init shorthand] ( https://github.com/rust-lang/rust-clippy/pull/15791 )
199196* [ fix ` mem_replace_with_default ` wrongly unmangled macros] ( https://github.com/rust-lang/rust-clippy/pull/15786 )
200197* [ implement ` volatile_composites ` lint] ( https://github.com/rust-lang/rust-clippy/pull/15686 )
201- #### Rust-Analyzer
198+
199+ #### Rust-Analyzer
202200* [ make rust-analyzer use a dedicated build directory] ( https://github.com/rust-lang/rust/pull/141839 )
203201* [ deduplicate sort+dedup calls] ( https://github.com/rust-lang/rust-analyzer/pull/20794 )
204202* [ 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
426424
427425-->
428426
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/ )
430428
431429# Quote of the Week
432430
@@ -442,4 +440,4 @@ Thanks to [llogiq](https://users.rust-lang.org/t/twir-quote-of-the-week/328/1720
442440
443441* Email list hosting is sponsored by [ The Rust Foundation] ( https://foundation.rust-lang.org/ ) *
444442
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