Skip to content

Commit 3ccf343

Browse files
authored
Merge branch 'master' into deautoref-ergo
2 parents accbd2b + 023fa40 commit 3ccf343

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+5504
-304
lines changed

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Not useful to get grep results from
2+
mermaid.min.js binary
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: Active initiative tracking issue
3+
about: Issue representing an active initiative
4+
title: "(My meeting proposal)"
5+
labels: lang-initiative, T-lang
6+
assignees: ""
7+
---
8+
9+
# Summary
10+
11+
_Briefly describe the goal of the initiative_
12+
13+
# Info
14+
15+
- Owner: _name here_
16+
- Liaison: _name here_
17+
- Zulip stream [`#project-XXX`](XXX)
18+
- [stage]: Experimental
19+
- Repository [rust-lang/XXX](https://github.com/rust-lang/XXX) (if any)
20+
21+
[Stage]
22+
23+
# What is this issue?
24+
25+
This issue represents an **[active initiative]**. It is meant to be used for
26+
the group to post updates to the lang team (and others) in a lightweight
27+
fashion. Please do not use the comments here for discussion, that should be kept
28+
in the Zulip stream (discussion comments here will be marked as off-topic).
29+
30+
[stage]: https://lang-team.rust-lang.org/initiatives/stages.md
31+
[active initiative]: https://lang-team.rust-lang.org/initiatives.md
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
name: Initiative proposal
3+
about: Propose a new initiative affiliated with the lang-team
4+
title: "(My initiative proposal)"
5+
labels: major-change, T-lang
6+
assignees: ""
7+
---
8+
9+
# Proposal
10+
11+
## Summary and problem statement
12+
13+
_Describe the problem(s) this initiative is trying to solve as concisely as you can._
14+
15+
## Motivation, use-cases, and solution sketches
16+
17+
_Please describe the problem you are trying to solve and give some use-cases that illustrate it._
18+
19+
_Please also sketch out one or more solutions to the problem. You don't have to have all the details worked out, but it should be enough to convey the idea._
20+
21+
## Links and related work
22+
23+
_Provide links to any internal thread(s), github issues, related work from other languages, or other things that are worth following up on._
24+
25+
## Initial people involved
26+
27+
- Owner, if known:
28+
- Liaison
29+
30+
## What happens now?
31+
32+
This issue is part of the lang-team [initiative process]. Once this issue is filed, a Zulip topic will be opened for discussion, and the lang-team will review open proposals in its weekly triage meetings. You should receive feedback within a week or two.
33+
34+
**This issue is not meant to be used for technical discussion. There is a Zulip stream for that. Use this issue to leave procedural comments, such as volunteering to review, indicating that you second the proposal (or third, etc), or raising a concern that you would like to be addressed.**
35+
36+
[forge]: https://forge.rust-lang.org/
37+
[initiative process]: https://lang-team.rust-lang.org/initiatives.md

.github/ISSUE_TEMPLATE/project-group.md

-27
This file was deleted.

.github/ISSUE_TEMPLATE/project_proposal.md

-47
This file was deleted.

.github/workflows/deploy.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Deploy mdBook
2+
on: [push]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- uses: XAMPPRocky/[email protected]
9+
with:
10+
token: ${{ secrets.GITHUB_TOKEN }}

.travis.yml

-20
This file was deleted.

book.toml

+17
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,20 @@ language = "en"
44
multilingual = false
55
src = "src"
66
title = "The Rust Language Design Team"
7+
8+
[output.html]
9+
additional-js =["mermaid.min.js", "mermaid-init.js"]
10+
11+
[output.html.fold]
12+
enable = true
13+
level = 0
14+
15+
[preprocessor]
16+
[preprocessor.mermaid]
17+
command = "mdbook-mermaid"
18+
19+
[output.html.redirect]
20+
"/rust-2018/edition-changes.html" = "index.html"
21+
"/priorities.html" = "initiatives/priorities.html"
22+
"/project_groups.html" = "initiatives/active.html"
23+
"/proposing_a_project.html" = "initiatives/proposing.html"

0 commit comments

Comments
 (0)