Skip to content

Commit 5ccc7a5

Browse files
author
Niko Matsakis
committed
minor fixes to generated rfc
1 parent 45b6de0 commit 5ccc7a5

10 files changed

+11
-11
lines changed

gh-cache/@Jamesbarford.bincode

14 Bytes
Binary file not shown.

gh-cache/@baumanj.bincode

19 Bytes
Binary file not shown.

gh-cache/@folkertdev.bincode

25 Bytes
Binary file not shown.

gh-cache/@harmou01.bincode

22 Bytes
Binary file not shown.

gh-cache/@mrkajetanp.bincode

26 Bytes
Binary file not shown.

gh-cache/@triagebot.bincode

18 Bytes
Binary file not shown.

gh-cache/@veluca93.bincode

21 Bytes
Binary file not shown.

mdbook-goals/src/goal.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -233,11 +233,11 @@ pub fn format_team_asks(asks_of_any_team: &[&TeamAsk]) -> anyhow::Result<String>
233233

234234
pub fn format_goal_table(goals: &[&GoalDocument]) -> anyhow::Result<String> {
235235
// If any of the goals have tracking issues, include those in the table.
236-
let goal_has_tracking_issue = goals.iter().any(|g| g.metadata.tracking_issue.is_some());
237-
236+
let goals_are_proposed = goals.iter().any(|g| g.metadata.status == Status::Proposed);
237+
238238
let mut table;
239239

240-
if goal_has_tracking_issue {
240+
if !goals_are_proposed {
241241
table = vec![vec![
242242
"Goal".to_string(),
243243
"Owner".to_string(),

src/2025h1/GPU-Offload.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Expose experimental LLVM features for GPU offloading
22

3-
| Metadata | |
4-
| --- | --- |
5-
| Owner(s) | @ZuseZ4 |
6-
| Teams | [lang], [compiler] |
7-
| Status | Accepted |
8-
| Tracking issue | [rust-lang/rust-project-goals#109] |
3+
| Metadata | |
4+
|-----------------------|--------------------------------------------------|
5+
| Owner(s) | @ZuseZ4 |
6+
| Teams | [lang], [compiler] |
7+
| Status | Proposed |
8+
| Tracking issue | [rust-lang/rust-project-goals#109] |
99
| Other tracking issues | [rust-lang/rust#124509], [rust-lang/rust#124509] |
1010

1111

@@ -81,7 +81,7 @@ Manuel S. Drehwald is working 5 days per week on this, sponsored by LLNL and the
8181
Minimal "smoke test" reviews will be needed from the compiler-team. The Rust language changes at this stage are expected to be a minimal wrapper around the underlying LLVM functionality and the compiler team need only vet that the feature will not hinder usability for ordinary Rust users or cause undue burden on the compiler architecture itself. There is no requirement to vet the quality or usability of the design.
8282

8383
| Subgoal | Owner(s) or team(s) | Notes |
84-
| -------------------- | ---------------------- | ---------- |
84+
|----------------------|------------------------|------------|
8585
| Development | @ZuseZ4 | |
8686
| Lang-team experiment | ![Team][] [lang][] | (approved) |
8787
| Standard reviews | ![Team][] [compiler][] | |

src/2025h1/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The slate of additional project goals are as follows. These goals all have ident
5353

5454
Some goals here do not yet have an owner (look for the ![Help wanted][] badge). Teams have reserved some capacity to pursue these goals but until an appropriate owner is found they are only considered provisionally accepted. If you are interested in serving as the owner for one of these orphaned goals, reach out to the mentor listed in the goal to discuss.
5555

56-
<!-- GOALS 'Accepted,Orphaned' -->
56+
<!-- GOALS 'Proposed' -->
5757

5858
# Reference-level explanation
5959
[reference-level-explanation]: #reference-level-explanation

0 commit comments

Comments
 (0)