Skip to content

Commit eb4a187

Browse files
authored
Merge branch 'master' into enable-exhaustive-patterns
2 parents 7035d78 + fd2df74 commit eb4a187

File tree

3,512 files changed

+87778
-61240
lines changed

Some content is hidden

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

3,512 files changed

+87778
-61240
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
---
2+
name: Library Tracking Issue
3+
about: A tracking issue for an unstable library feature.
4+
title: Tracking Issue for XXX
5+
labels: C-tracking-issue, T-libs
6+
---
7+
<!--
8+
Thank you for creating a tracking issue!
9+
10+
Tracking issues are for tracking a feature from implementation to stabilization.
11+
12+
Make sure to include the relevant RFC for the feature if it has one.
13+
14+
If the new feature is small, it may be fine to skip the RFC process. In that
15+
case, you can use use `issue = "none"` in your initial implementation PR. The
16+
reviewer will ask you to open a tracking issue if they agree your feature can be
17+
added without an RFC.
18+
-->
19+
20+
Feature gate: `#![feature(...)]`
21+
22+
This is a tracking issue for ...
23+
24+
<!--
25+
Include a short description of the feature.
26+
-->
27+
28+
### Public API
29+
30+
<!--
31+
For most library features, it'd be useful to include a summarized version of the public API.
32+
(E.g. just the public function signatures without their doc comments or implementation.)
33+
-->
34+
35+
```rust
36+
// core::magic
37+
38+
pub struct Magic;
39+
40+
impl Magic {
41+
pub fn magic(self);
42+
}
43+
```
44+
45+
### Steps / History
46+
47+
<!--
48+
For larger features, more steps might be involved.
49+
If the feature is changed later, please add those PRs here as well.
50+
-->
51+
52+
- [ ] Implementation: #...
53+
- [ ] Final commenting period (FCP)
54+
- [ ] Stabilization PR
55+
56+
<!--
57+
Once the feature has gone through a few release cycles and there are no
58+
unresolved questions left, the feature might be ready for stabilization.
59+
60+
If this feature didn't go through the RFC process, a final commenting period
61+
(FCP) is always needed before stabilization. This works as follows:
62+
63+
A library team member can kick off the stabilization process, at which point
64+
the rfcbot will ask all the team members to verify they agree with
65+
stabilization. Once enough members agree and there are no concerns, the final
66+
commenting period begins: this issue will be marked as such and will be listed
67+
in the next This Week in Rust newsletter. If no blocking concerns are raised in
68+
that period of 10 days, a stabilzation PR can be opened by anyone.
69+
-->
70+
71+
### Unresolved Questions
72+
73+
<!--
74+
Include any open questions that need to be answered before the feature can be
75+
stabilised. If multiple (unrelated) big questions come up, it can be a good idea
76+
to open a separate issue for each, to make it easier to keep track of the
77+
discussions.
78+
79+
It's useful to link any relevant discussions and conclusions (whether on GitHub,
80+
Zulip, or the internals forum) here.
81+
-->
82+
83+
- None yet.

.gitmodules

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
[submodule "src/llvm-project"]
3838
path = src/llvm-project
3939
url = https://github.com/rust-lang/llvm-project.git
40-
branch = rustc/11.0-2020-10-12
40+
branch = rustc/11.0-2021-01-05
4141
[submodule "src/doc/embedded-book"]
4242
path = src/doc/embedded-book
4343
url = https://github.com/rust-embedded/book.git

0 commit comments

Comments
 (0)