Skip to content

Commit 4de9f1f

Browse files
authored
Merge pull request #7228 from tzilist/master
Update CFT, FCP, MCP and RFC sections for TWiR-624
2 parents c744118 + 6f77c4b commit 4de9f1f

File tree

1 file changed

+26
-32
lines changed

1 file changed

+26
-32
lines changed

draft/2025-11-05-this-week-in-rust.md

Lines changed: 26 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ Thanks to [llogiq](https://users.rust-lang.org/t/crate-of-the-week/2704/1484) fo
7777
[submit_crate]: https://users.rust-lang.org/t/crate-of-the-week/2704
7878

7979
## Calls for Testing
80+
8081
An important step for RFC implementation is for people to experiment with the
8182
implementation and give feedback, especially before stabilization.
8283

@@ -254,54 +255,47 @@ Revision range: [23fced0f..35ebdf9b](https://perf.rust-lang.org/?start=23fced0fc
254255
Changes to Rust follow the Rust [RFC (request for comments) process](https://github.com/rust-lang/rfcs#rust-rfcs). These
255256
are the RFCs that were approved for implementation this week:
256257

257-
<!-- Use either
258-
* [Item title](Item URL)
259-
- or
260258
* *No RFCs were approved this week.*
261-
-->
262259

263260
### Final Comment Period
264261

265262
Every week, [the team](https://www.rust-lang.org/team.html) announces the 'final comment period' for RFCs and key PRs
266263
which are reaching a decision. Express your opinions now.
267264

268265
#### Tracking Issues & PRs
269-
<!-- Either remove the group from the "No Items Entered Final Comment Period this week for" section
270-
and add the item(s) which entered Final comment period:
271-
##### [Group](Group URL)
272-
* [Item title](Item URL)
273-
- for `disposition-merge` `final-comment-period` items, or
274-
* [disposition: postpone]
275-
- for `disposition-postpone` `final-comment-period` items, or
276-
* [disposition: close]
277-
- for `disposition-close` `final-comment-period` items,
278-
* [disposition: unspecified]
279-
- when `disposition` is unspecified or ensure the group is a part of the
280-
"No Items Entered Final Comment Period this week for" section
266+
267+
##### [Rust](https://github.com/rust-lang/rust/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc)
268+
269+
* [Emit error when using path-segment keyword as cfg pred](https://github.com/rust-lang/rust/pull/146978)
270+
* [stabilize extern_system_varargs](https://github.com/rust-lang/rust/pull/145954)
271+
* [Tracking issue for `vec_into_raw_parts`](https://github.com/rust-lang/rust/issues/65816)
272+
* [rustdoc: Erase `#![doc(document_private_items)]`](https://github.com/rust-lang/rust/pull/146495)
273+
* [Add new `function_casts_as_integer` lint](https://github.com/rust-lang/rust/pull/141470)
274+
* [resolve: Preserve ambiguous glob reexports in crate metadata](https://github.com/rust-lang/rust/pull/147984)
275+
* [Make deref_nullptr deny by default instead of warn](https://github.com/rust-lang/rust/pull/148122)
276+
* [Tracking Issue for `const_mul_add`](https://github.com/rust-lang/rust/issues/146724)
277+
278+
##### [Language Reference](https://github.com/rust-lang/reference/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc)
279+
280+
* [Guarantee the binary representation of `isize` explicitly](https://github.com/rust-lang/reference/pull/2064)
281+
282+
##### [Leadership Council](https://github.com/rust-lang/leadership-council/issues?q=state%3Aopen%20label%3Afinal-comment-period)
283+
284+
* [Proposal: Require all project team members to have Zulip IDs](https://github.com/rust-lang/leadership-council/issues/228)
285+
281286
*No Items entered Final Comment Period this week for
282-
[Rust RFCs](https://github.com/rust-lang/rfcs/labels/final-comment-period),
283287
[Cargo](https://github.com/rust-lang/cargo/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc),
284-
[Compiler Team](https://github.com/rust-lang/compiler-team/issues?q=label%3Amajor-change%20%20label%3Afinal-comment-period) [(MCPs only)](https://forge.rust-lang.org/compiler/mcp.html),
285-
[Language Team](https://github.com/rust-lang/lang-team/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc+),
286-
[Language Reference](https://github.com/rust-lang/reference/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc),
287-
[Leadership Council](https://github.com/rust-lang/leadership-council/issues?q=state%3Aopen%20label%3Afinal-comment-period) or
288+
[Rust RFCs](https://github.com/rust-lang/rfcs/labels/final-comment-period),
289+
[Language Team](https://github.com/rust-lang/lang-team/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc+) or
288290
[Unsafe Code Guidelines](https://github.com/rust-lang/unsafe-code-guidelines/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc).*
289291

290292
Let us know if you would like your PRs, Tracking Issues or RFCs to be tracked as a part of this list.
291-
-->
292293

293294
#### [New and Updated RFCs](https://github.com/rust-lang/rfcs/pulls)
294-
<!-- Use either
295-
* [Item title](Item URL)
296-
- for new items, or
297-
* [updated] [Item title](Item URL)
298-
- for updated items, or
299-
* *No New or Updated RFCs were created this week.*
300-
-->
301295

302-
<!-- Sample commit message
303-
Update CFT, FCP, MCP and RFC sections for TWiR-xxx
304-
-->
296+
* [build-std: explicit dependencies](https://github.com/rust-lang/rfcs/pull/3875)
297+
* [build-std: always](https://github.com/rust-lang/rfcs/pull/3874)
298+
* [build-std: context](https://github.com/rust-lang/rfcs/pull/3873)
305299

306300
## Upcoming Events
307301

0 commit comments

Comments
 (0)