Skip to content

Commit b72660c

Browse files
authored
Merge pull request #2625 from rust-lang/rustc-pull
Rustc pull update
2 parents edb4cb5 + 434f17c commit b72660c

File tree

2,115 files changed

+32358
-25754
lines changed

Some content is hidden

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

2,115 files changed

+32358
-25754
lines changed

.github/ISSUE_TEMPLATE/tracking_issue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ for larger features an implementation could be broken up into multiple PRs.
5050
[stabilization-guide]: https://rustc-dev-guide.rust-lang.org/stabilization_guide.html#stabilization-pr
5151
[doc-guide]: https://rustc-dev-guide.rust-lang.org/stabilization_guide.html#documentation-prs
5252
[nightly-style-procedure]: https://github.com/rust-lang/style-team/blob/main/nightly-style-procedure.md
53-
[Style Guide]: https://github.com/rust-lang/rust/tree/master/src/doc/style-guide
53+
[Style Guide]: https://github.com/rust-lang/rust/tree/HEAD/src/doc/style-guide
5454

5555
### Unresolved Questions
5656
<!--

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ jobs:
323323
# If a some dependent job has failed, this exits with 1.
324324
- name: calculate the correct exit status
325325
run: jq --exit-status 'all(.result == "success" or .result == "skipped")' <<< '${{ toJson(needs) }}'
326-
# Publish the toolstate if an auto build succeeds (just before push to master)
326+
# Publish the toolstate if an auto build succeeds (just before push to the default branch)
327327
- name: publish toolstate
328328
run: src/ci/publish_toolstate.sh
329329
shell: bash

.github/workflows/post-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Workflow that runs after a merge to master, analyses changes in test executions
1+
# Workflow that runs after a merge to the default branch, analyses changes in test executions
22
# and posts the result to the merged PR.
33

44
name: Post merge analysis

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,10 @@ node_modules
9090
## Rustdoc GUI tests
9191
tests/rustdoc-gui/src/**.lock
9292

93+
## Test dashboard
94+
.citool-cache/
95+
test-dashboard/
96+
9397
## direnv
9498
/.envrc
9599
/.direnv/

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -680,6 +680,7 @@ Valerii Lashmanov <vflashm@gmail.com>
680680
Vitali Haravy <HumaneProgrammer@gmail.com> Vitali Haravy <humaneprogrammer@gmail.com>
681681
Vitaly Shukela <vi0oss@gmail.com>
682682
Waffle Lapkin <waffle.lapkin@gmail.com>
683+
Waffle Lapkin <waffle.lapkin@gmail.com> <Waffle Lapkin>
683684
Waffle Lapkin <waffle.lapkin@gmail.com> <waffle.lapkin@tasking.com>
684685
Weihang Lo <me@weihanglo.tw>
685686
Weihang Lo <me@weihanglo.tw> <weihanglo@users.noreply.github.com>

Cargo.lock

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
580580

581581
[[package]]
582582
name = "clippy"
583-
version = "0.1.92"
583+
version = "0.1.93"
584584
dependencies = [
585585
"anstream",
586586
"askama",
@@ -607,7 +607,7 @@ dependencies = [
607607

608608
[[package]]
609609
name = "clippy_config"
610-
version = "0.1.92"
610+
version = "0.1.93"
611611
dependencies = [
612612
"clippy_utils",
613613
"itertools",
@@ -630,7 +630,7 @@ dependencies = [
630630

631631
[[package]]
632632
name = "clippy_lints"
633-
version = "0.1.92"
633+
version = "0.1.93"
634634
dependencies = [
635635
"arrayvec",
636636
"cargo_metadata 0.18.1",
@@ -662,7 +662,7 @@ dependencies = [
662662

663663
[[package]]
664664
name = "clippy_utils"
665-
version = "0.1.92"
665+
version = "0.1.93"
666666
dependencies = [
667667
"arrayvec",
668668
"itertools",
@@ -1066,7 +1066,7 @@ dependencies = [
10661066

10671067
[[package]]
10681068
name = "declare_clippy_lint"
1069-
version = "0.1.92"
1069+
version = "0.1.93"
10701070

10711071
[[package]]
10721072
name = "derive-where"
@@ -1288,7 +1288,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
12881288
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
12891289
dependencies = [
12901290
"libc",
1291-
"windows-sys 0.60.2",
1291+
"windows-sys 0.52.0",
12921292
]
12931293

12941294
[[package]]
@@ -2101,9 +2101,9 @@ checksum = "9fa0e2a1fcbe2f6be6c42e342259976206b383122fc152e872795338b5a3f3a7"
21012101

21022102
[[package]]
21032103
name = "libc"
2104-
version = "0.2.174"
2104+
version = "0.2.177"
21052105
source = "registry+https://github.com/rust-lang/crates.io-index"
2106-
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
2106+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
21072107

21082108
[[package]]
21092109
name = "libdbus-sys"
@@ -2154,7 +2154,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
21542154
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
21552155
dependencies = [
21562156
"cfg-if",
2157-
"windows-targets 0.53.3",
2157+
"windows-targets 0.52.6",
21582158
]
21592159

21602160
[[package]]
@@ -2216,9 +2216,9 @@ dependencies = [
22162216

22172217
[[package]]
22182218
name = "linux-raw-sys"
2219-
version = "0.9.4"
2219+
version = "0.11.0"
22202220
source = "registry+https://github.com/rust-lang/crates.io-index"
2221-
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
2221+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
22222222

22232223
[[package]]
22242224
name = "litemap"
@@ -4897,15 +4897,15 @@ dependencies = [
48974897

48984898
[[package]]
48994899
name = "rustix"
4900-
version = "1.0.8"
4900+
version = "1.1.2"
49014901
source = "registry+https://github.com/rust-lang/crates.io-index"
4902-
checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
4902+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
49034903
dependencies = [
49044904
"bitflags",
49054905
"errno",
49064906
"libc",
49074907
"linux-raw-sys",
4908-
"windows-sys 0.60.2",
4908+
"windows-sys 0.52.0",
49094909
]
49104910

49114911
[[package]]

0 commit comments

Comments
 (0)