Skip to content

Commit 79a99bc

Browse files
committed
Merge remote-tracking branch 'upstream/master' into unused-parens-fn
2 parents be07f84 + e61dd43 commit 79a99bc

File tree

4,082 files changed

+816176
-47928
lines changed

Some content is hidden

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

4,082 files changed

+816176
-47928
lines changed

.github/ISSUE_TEMPLATE/rustdoc.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
name: Problem with rustdoc
3+
about: Report an issue with how docs get generated.
4+
labels: C-bug, T-rustdoc
5+
---
6+
<!--
7+
Thank you for filing a rustdoc issue! Rustdoc is the tool that handles the generation of docs. It is usually invoked via `cargo doc`, but can also be used directly.
8+
9+
If you have an issue with the actual content of the docs, use the "Documentation problem" template instead.
10+
-->
11+
12+
# Code
13+
<!-- problematic snippet and/or link to repo and/or full path of standard library function -->
14+
15+
```rust
16+
<code>
17+
```
18+
19+
# Reproduction Steps
20+
<!--
21+
* command(s) to run, if any
22+
* permalink to hosted documentation, if any
23+
* search query, if any
24+
-->
25+
26+
# Expected Outcome
27+
<!--
28+
What did you want to happen?
29+
30+
For GUI issues, feel free to provide a mockup image of what you want it to look like.
31+
32+
For diagnostics, please provide a mockup of the desired output in a code block.
33+
-->
34+
35+
# Actual Output
36+
<!--
37+
* rustdoc console output
38+
* browser screenshot of generated html
39+
* rustdoc json (prettify by running through `jq` or running thorugh an online formatter)
40+
-->
41+
```console
42+
<code>
43+
```
44+
45+
46+
# Version
47+
<!--
48+
Available via `rustdoc --version` or under the "Help" menu.
49+
50+
If the issue involves opening the documentation in a browser, please also provide the name and version of the browser used.
51+
-->
52+
53+
# Additional Details
54+
<!-- Anything else you think is relevant -->

.github/workflows/ci.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,18 @@ jobs:
5353
steps:
5454
- name: Checkout the source code
5555
uses: actions/checkout@v4
56-
# Cache citool to make its build faster, as it's in the critical path.
57-
# The rust-cache doesn't bleed into the main `job`, so it should not affect any other
58-
# Rust compilation.
59-
- name: Cache citool
60-
uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # v2.7.8
61-
with:
62-
workspaces: src/ci/citool
56+
- name: Test citool
57+
# Only test citool on the auto branch, to reduce latency of the calculate matrix job
58+
# on PR/try builds.
59+
if: ${{ github.ref == 'refs/heads/auto' }}
60+
run: |
61+
cd src/ci/citool
62+
CARGO_INCREMENTAL=0 cargo test
6363
- name: Calculate the CI job matrix
6464
env:
6565
COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
6666
run: |
6767
cd src/ci/citool
68-
CARGO_INCREMENTAL=0 cargo test
6968
CARGO_INCREMENTAL=0 cargo run calculate-job-matrix >> $GITHUB_OUTPUT
7069
id: jobs
7170
job:

.gitmodules

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@
1818
path = src/doc/rust-by-example
1919
url = https://github.com/rust-lang/rust-by-example.git
2020
shallow = true
21-
[submodule "library/stdarch"]
22-
path = library/stdarch
23-
url = https://github.com/rust-lang/stdarch.git
24-
shallow = true
2521
[submodule "src/doc/edition-guide"]
2622
path = src/doc/edition-guide
2723
url = https://github.com/rust-lang/edition-guide.git

.mailmap

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,13 @@ Alona Enraght-Moony <[email protected]> <[email protected]>
3434
Alona Enraght-Moony <[email protected]> <[email protected]>
3535
3636
37+
3738
3839
Ana-Maria Mihalache <[email protected]>
3940
Anatoly Ikorsky <[email protected]>
4041
Andre Bogus <[email protected]>
42+
43+
4144
Andrea Ciliberti <[email protected]>
4245
4346
Andreas Jonson <[email protected]>
@@ -116,6 +119,7 @@ Carol Willing <[email protected]>
116119
Chandler Deng <[email protected]>
117120
Charles Lew <[email protected]> CrLF0710 <[email protected]>
118121
Chris C Cerami <[email protected]> Chris C Cerami <[email protected]>
122+
119123
Chris Denton <[email protected]> Chris Denton <[email protected]>
120124
Chris Gregory <[email protected]>
121125
Chris Pardy <[email protected]>
@@ -158,8 +162,10 @@ David Carlier <[email protected]>
158162
David Klein <[email protected]>
159163
160164
David Ross <[email protected]>
161-
165+
166+
162167
168+
163169
164170
165171
dependabot[bot] <dependabot[bot]@users.noreply.github.com> <27856297+dependabot-preview[bot]@users.noreply.github.com>
@@ -403,6 +409,8 @@ Urgau <[email protected]> <[email protected]>
403409
404410
405411
Lukas Lueg <[email protected]>
412+
413+
406414
Luke Metz <[email protected]>
407415
408416
@@ -493,6 +501,7 @@ Nicolas Abram <[email protected]>
493501
Nicole Mazzuca <[email protected]>
494502
Niko Matsakis <[email protected]>
495503
504+
496505
Noratrieb <[email protected]>
497506
498507
@@ -691,3 +700,4 @@ Zach Pomerantz <[email protected]>
691700
692701
Zack Slayton <[email protected]>
693702
Zbigniew Siciarz <[email protected]> Zbigniew Siciarz <[email protected]>
703+

0 commit comments

Comments
 (0)