Skip to content

Commit 073b87d

Browse files
committed
Merge branch 'pr/windows-add-change-time' of github.com:juliusl/rust into pr/windows-add-change-time
2 parents 053d181 + d9ae43c commit 073b87d

File tree

33,047 files changed

+791796
-423985
lines changed

Some content is hidden

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

33,047 files changed

+791796
-423985
lines changed

.editorconfig

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ trim_trailing_whitespace = true
1111
insert_final_newline = true
1212
indent_style = space
1313
indent_size = 4
14+
15+
[*.rs]
1416
max_line_length = 100
1517

1618
[*.md]

.git-blame-ignore-revs

+4
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,7 @@ cf2dff2b1e3fa55fa5415d524200070d0d7aacfe
1616
b39a1d6f1a30ba29f25d7141038b9a5bf0126e36
1717
# reorder fluent message files
1818
f97fddab91fbf290ea5b691fe355d6f915220b6e
19+
# format let-else
20+
cc907f80b95c6ec530c5ee1b05b044a468f07eca
21+
# format let-chains
22+
b2d2184edea578109a48ec3d8decbee5948e8f35

.github/ISSUE_TEMPLATE/config.yml

+3
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ contact_links:
66
- name: Feature Request
77
url: https://internals.rust-lang.org/
88
about: Please discuss language feature requests on the internals forum.
9+
- name: Clippy Bug
10+
url: https://github.com/rust-lang/rust-clippy/issues/new/choose
11+
about: Please report Clippy bugs such as false positives in the Clippy repo.

.github/ISSUE_TEMPLATE/diagnostics.yaml

+16-3
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,23 @@ body:
5252
render: Rust
5353
validations:
5454
required: false
55-
- type: markdown
55+
- type: textarea
56+
id: version
5657
attributes:
57-
value: |
58-
If you're using the stable version of the compiler, you should also check if the bug also exists in the beta or nightly versions. The output might also be different depending on the Edition.
58+
label: Rust Version
59+
description: Please provide the `rustc` version, `rustc --version --verbose`. Make sure that you're using the latest version of the compiler, and not an outdated stable or nightly release!
60+
placeholder: |
61+
$ rustc --version --verbose
62+
rustc 1.XX.Y (SHORTHASH DATE)
63+
binary: rustc
64+
commit-hash: LONGHASHVALUE
65+
commit-date: DATE
66+
host: PLATFORMTRIPLE
67+
release: 1.XX.Y
68+
LLVM version: XX.YY.ZZ
69+
render: Shell
70+
validations:
71+
required: true
5972
- type: textarea
6073
id: extra
6174
attributes:

.github/ISSUE_TEMPLATE/ice.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ body:
4040
id: version
4141
attributes:
4242
label: Rust Version
43-
description: Please provide the `rustc` version, `rustc --version --verbose`
43+
description: Please provide the `rustc` version, `rustc --version --verbose`. Make sure that you're using the latest version of the compiler, and not an outdated stable or nightly release!
4444
placeholder: |
4545
$ rustc --version --verbose
4646
rustc 1.XX.Y (SHORTHASH DATE)

.github/ISSUE_TEMPLATE/tracking_issue.md

+3
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,13 @@ for larger features an implementation could be broken up into multiple PRs.
3939
- [ ] Implement the RFC (cc @rust-lang/XXX -- can anyone write up mentoring
4040
instructions?)
4141
- [ ] Adjust documentation ([see instructions on rustc-dev-guide][doc-guide])
42+
- [ ] Formatting for new syntax has been added to the [Style Guide] ([nightly-style-procedure])
4243
- [ ] Stabilization PR ([see instructions on rustc-dev-guide][stabilization-guide])
4344

4445
[stabilization-guide]: https://rustc-dev-guide.rust-lang.org/stabilization_guide.html#stabilization-pr
4546
[doc-guide]: https://rustc-dev-guide.rust-lang.org/stabilization_guide.html#documentation-prs
47+
[nightly-style-procedure]: https://github.com/rust-lang/style-team/blob/master/nightly-style-procedure.md
48+
[Style Guide]: https://github.com/rust-lang/rust/tree/master/src/doc/style-guide
4649

4750
### Unresolved Questions
4851
<!--

0 commit comments

Comments
 (0)