Skip to content

Commit 1a5d9d7

Browse files
Merge pull request #6284 from U007D/master
Update RFC, MCP, FCP and CFT sections for TWiR-582
2 parents 8d63c5d + 402f90a commit 1a5d9d7

File tree

1 file changed

+31
-30
lines changed

1 file changed

+31
-30
lines changed

draft/2025-01-15-this-week-in-rust.md

Lines changed: 31 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -65,19 +65,23 @@ and just ask the editors to select the category.
6565
[submit_crate]: https://users.rust-lang.org/t/crate-of-the-week/2704
6666

6767
## Calls for Testing
68-
6968
An important step for RFC implementation is for people to experiment with the
7069
implementation and give feedback, especially before stabilization. The following
7170
RFCs would benefit from user testing before moving forward:
7271

73-
<!-- Calls for Testing go here, use this format:
74-
* [<RFC Topic>](<RFC URL>)
75-
* [Tracking Issue](<Tracking Issue URL>)
76-
* [Testing steps](<Testing Steps URL>)
77-
-->
78-
<!-- or if there are no new or updated RFCs this week, use: -->
79-
<!-- * *No New or Updated RFCs were created this week.* -->
80-
<!-- Remember to remove the `call-for-testing` label from the RFC so that the maintainer can signal for testers again, if desired. -->
72+
### [RFCs](https://github.com/rust-lang/rfcs/issues?q=label%3Acall-for-testing)
73+
* *No calls for testing were issued this week.*
74+
75+
### [Rust](https://github.com/rust-lang/rust/labels/call-for-testing)
76+
* [Tracking issue for RFC 3695: Allow boolean literals as cfg predicates](https://github.com/rust-lang/rust/issues/131204)
77+
- [Testing steps](https://github.com/rust-lang/rust/issues/131204#issuecomment-2569314526)
78+
79+
### [Rustup](https://github.com/rust-lang/rustup/labels/call-for-testing)
80+
* *No calls for testing were issued this week.*
81+
82+
If you are a feature implementer and would like your RFC to appear on the above list, add the new `call-for-testing`
83+
label to your RFC along with a comment providing testing instructions and/or guidance on which aspect(s) of the feature
84+
need testing.
8185

8286
### [RFCs](https://github.com/rust-lang/rfcs/issues?q=label%3Acall-for-testing)
8387

@@ -132,47 +136,44 @@ If you are an event organizer hoping to expand the reach of your event, please s
132136
Changes to Rust follow the Rust [RFC (request for comments) process](https://github.com/rust-lang/rfcs#rust-rfcs). These
133137
are the RFCs that were approved for implementation this week:
134138

135-
<!-- Approved RFCs go here, use this format: * [Topic](URL) -->
136-
<!-- or if none were approved this week, use: * *No RFCs were approved this week.* -->
137-
<!-- * []() -->
138-
139-
<!--
140-
### [Approved Major Change Proposals (MCP)](https://forge.rust-lang.org/compiler/mcp.html)
141-
<!~~ MCPs occur infrequently, so this section is commented out by default. ~~>
142-
<!~~ MCPs which have been approved or rejected this week go here, use this format: * [major change accepted|rejected] [Topic](URL) ~~>
143-
-->
139+
* *No RFCs were approved this week.*
144140

145141
### Final Comment Period
146142

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

150146
#### [RFCs](https://github.com/rust-lang/rfcs/labels/final-comment-period)
151-
<!-- RFCs which have entered FCP go here, use this format: * [disposition: merge|close] [Topic](URL) -->
152-
<!-- or if none entered FCP this week, use: * *No RFCs entered Final Comment Period this week.* -->
153-
<!-- * [disposition: ] []() -->
147+
* [Supertrait item shadowing v2](https://github.com/rust-lang/rfcs/pull/3624)
154148

155149
#### Tracking Issues & PRs
156-
<!-- Tracking Issues which have entered FCP go here, use this format: * [disposition: merge|close] [Topic](URL) -->
157-
<!-- or if none entered FCP this week, use: -->
158-
<!-- * *No Tracking Issues or PRs entered Final Comment Period this week.* -->
159-
<!-- * [disposition: ] []() -->
160-
161150
##### [Rust](https://github.com/rust-lang/rust/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc)
151+
* [remove support for the (unstable) #[start] attribute](https://github.com/rust-lang/rust/pull/134299)
152+
* [fully de-stabilize all custom inner attributes](https://github.com/rust-lang/rust/pull/134276)
153+
* [Uplift `clippy::double_neg` lint as `double_negations`](https://github.com/rust-lang/rust/pull/126604)
154+
* [Optimize `Seek::stream`_len impl for File](https://github.com/rust-lang/rust/pull/125087)
155+
* [[rustdoc] Add sans-serif font setting](https://github.com/rust-lang/rust/pull/133636)
156+
* [Tracking Issue for PathBuf::add_extension and Path::with_added_extension](https://github.com/rust-lang/rust/issues/127292)
157+
* [Make the wasm_c_abi future compat warning a hard error](https://github.com/rust-lang/rust/pull/133951)
158+
* [const-eval: detect more pointers as definitely not-null](https://github.com/rust-lang/rust/pull/133700)
159+
* [Consider fields to be inhabited if they are unstable](https://github.com/rust-lang/rust/pull/133889)
160+
* [disallow repr() on invalid items](https://github.com/rust-lang/rust/pull/133925)
162161

163162
##### [Cargo](https://github.com/rust-lang/cargo/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc)
163+
* *No Cargo Tracking Issues or PRs entered Final Comment Period this week.*
164164

165165
##### [Language Team](https://github.com/rust-lang/lang-team/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc+)
166+
* *No Language Team Proposals entered Final Comment Period this week.*
166167

167168
##### [Language Reference](https://github.com/rust-lang/reference/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc)
169+
* [distinct 'static' items never overlap](https://github.com/rust-lang/reference/pull/1657)
168170

169171
##### [Unsafe Code Guidelines](https://github.com/rust-lang/unsafe-code-guidelines/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc)
172+
* *No Unsafe Code Guideline Tracking Issues or PRs entered Final Comment Period this week.*
170173

171174
#### [New and Updated RFCs](https://github.com/rust-lang/rfcs/pulls)
172-
<!-- New or updated RFCs go here, use this format: * [new|updated] [Topic](URL) -->
173-
<!-- or if there are no new or updated RFCs this week, use: -->
174-
<!-- * *No New or Updated RFCs were created this week.* -->
175-
<!-- * [new|updated] []() -->
175+
* [Make trait methods callable in const contexts](https://github.com/rust-lang/rfcs/pull/3762)
176+
* [RFC: Allow packages to specify a set of supported targets](https://github.com/rust-lang/rfcs/pull/3759)
176177

177178
## Upcoming Events
178179

0 commit comments

Comments
 (0)