Skip to content

Commit 68a5648

Browse files
authored
Merge branch 'master' into document-from
2 parents 1547743 + 28b83ee commit 68a5648

File tree

335 files changed

+5960
-3225
lines changed

Some content is hidden

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

335 files changed

+5960
-3225
lines changed

.github/workflows/ci.yml

+6
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ jobs:
7070
HEAD_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
7171
DOCKER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7272
SCCACHE_BUCKET: rust-lang-ci-sccache2
73+
SCCACHE_REGION: us-west-1
7374
CACHE_DOMAIN: ci-caches.rust-lang.org
7475
continue-on-error: ${{ matrix.continue_on_error || false }}
7576
strategy:
@@ -173,6 +174,11 @@ jobs:
173174
- name: ensure the stable version number is correct
174175
run: src/ci/scripts/verify-stable-version-number.sh
175176

177+
# Show the environment just before we run the build
178+
# This makes it easier to diagnose problems with the above install scripts.
179+
- name: show the current environment
180+
run: src/ci/scripts/dump-environment.sh
181+
176182
- name: run the build
177183
# Redirect stderr to stdout to avoid reordering the two streams in the GHA logs.
178184
run: src/ci/scripts/run-build-from-ci.sh 2>&1

Cargo.lock

+3-202
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,6 @@ version = "0.2.21"
6161
source = "registry+https://github.com/rust-lang/crates.io-index"
6262
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
6363

64-
[[package]]
65-
name = "ammonia"
66-
version = "4.0.0"
67-
source = "registry+https://github.com/rust-lang/crates.io-index"
68-
checksum = "1ab99eae5ee58501ab236beb6f20f6ca39be615267b014899c89b2f0bc18a459"
69-
dependencies = [
70-
"html5ever",
71-
"maplit",
72-
"once_cell",
73-
"tendril",
74-
"url",
75-
]
76-
7764
[[package]]
7865
name = "android-tzdata"
7966
version = "0.1.1"
@@ -513,16 +500,6 @@ dependencies = [
513500
"anstyle",
514501
"clap_lex",
515502
"strsim",
516-
"terminal_size",
517-
]
518-
519-
[[package]]
520-
name = "clap_complete"
521-
version = "4.5.42"
522-
source = "registry+https://github.com/rust-lang/crates.io-index"
523-
checksum = "33a7e468e750fa4b6be660e8b5651ad47372e8fb114030b594c2d75d48c5ffd0"
524-
dependencies = [
525-
"clap",
526503
]
527504

528505
[[package]]
@@ -1084,18 +1061,6 @@ version = "1.13.0"
10841061
source = "registry+https://github.com/rust-lang/crates.io-index"
10851062
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
10861063

1087-
[[package]]
1088-
name = "elasticlunr-rs"
1089-
version = "3.0.2"
1090-
source = "registry+https://github.com/rust-lang/crates.io-index"
1091-
checksum = "41e83863a500656dfa214fee6682de9c5b9f03de6860fec531235ed2ae9f6571"
1092-
dependencies = [
1093-
"regex",
1094-
"serde",
1095-
"serde_derive",
1096-
"serde_json",
1097-
]
1098-
10991064
[[package]]
11001065
name = "elsa"
11011066
version = "1.11.0"
@@ -1159,13 +1124,6 @@ dependencies = [
11591124
"windows-sys 0.59.0",
11601125
]
11611126

1162-
[[package]]
1163-
name = "error_index_generator"
1164-
version = "0.0.0"
1165-
dependencies = [
1166-
"mdbook",
1167-
]
1168-
11691127
[[package]]
11701128
name = "expect-test"
11711129
version = "1.5.1"
@@ -1517,22 +1475,6 @@ dependencies = [
15171475
"serde",
15181476
]
15191477

1520-
[[package]]
1521-
name = "handlebars"
1522-
version = "6.3.0"
1523-
source = "registry+https://github.com/rust-lang/crates.io-index"
1524-
checksum = "3d6b224b95c1e668ac0270325ad563b2eef1469fbbb8959bc7c692c844b813d9"
1525-
dependencies = [
1526-
"derive_builder",
1527-
"log",
1528-
"num-order",
1529-
"pest",
1530-
"pest_derive",
1531-
"serde",
1532-
"serde_json",
1533-
"thiserror 2.0.11",
1534-
]
1535-
15361478
[[package]]
15371479
name = "hashbrown"
15381480
version = "0.14.5"
@@ -2189,12 +2131,6 @@ version = "0.1.1"
21892131
source = "registry+https://github.com/rust-lang/crates.io-index"
21902132
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
21912133

2192-
[[package]]
2193-
name = "maplit"
2194-
version = "1.0.2"
2195-
source = "registry+https://github.com/rust-lang/crates.io-index"
2196-
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
2197-
21982134
[[package]]
21992135
name = "markup5ever"
22002136
version = "0.12.1"
@@ -2228,34 +2164,6 @@ dependencies = [
22282164
"digest",
22292165
]
22302166

2231-
[[package]]
2232-
name = "mdbook"
2233-
version = "0.4.43"
2234-
source = "registry+https://github.com/rust-lang/crates.io-index"
2235-
checksum = "fe1f98b8d66e537d2f0ba06e7dec4f44001deec539a2d18bfc102d6a86189148"
2236-
dependencies = [
2237-
"ammonia",
2238-
"anyhow",
2239-
"chrono",
2240-
"clap",
2241-
"clap_complete",
2242-
"elasticlunr-rs",
2243-
"env_logger",
2244-
"handlebars",
2245-
"log",
2246-
"memchr",
2247-
"once_cell",
2248-
"opener",
2249-
"pulldown-cmark 0.10.3",
2250-
"regex",
2251-
"serde",
2252-
"serde_json",
2253-
"shlex",
2254-
"tempfile",
2255-
"toml 0.5.11",
2256-
"topological-sort",
2257-
]
2258-
22592167
[[package]]
22602168
name = "measureme"
22612169
version = "11.0.1"
@@ -2303,9 +2211,9 @@ dependencies = [
23032211

23042212
[[package]]
23052213
name = "minifier"
2306-
version = "0.3.4"
2214+
version = "0.3.5"
23072215
source = "registry+https://github.com/rust-lang/crates.io-index"
2308-
checksum = "1cf47565b1430f5fe6c81d3afcb4b835271348d7eb35294a4d592e38dd09ea22"
2216+
checksum = "9bfdc64e2f805f3d12965f10522000bae36e88d2cfea44112331f467d4f4bf68"
23092217

23102218
[[package]]
23112219
name = "minimal-lexical"
@@ -2483,21 +2391,6 @@ dependencies = [
24832391
"num-traits",
24842392
]
24852393

2486-
[[package]]
2487-
name = "num-modular"
2488-
version = "0.6.1"
2489-
source = "registry+https://github.com/rust-lang/crates.io-index"
2490-
checksum = "17bb261bf36fa7d83f4c294f834e91256769097b3cb505d44831e0a179ac647f"
2491-
2492-
[[package]]
2493-
name = "num-order"
2494-
version = "1.2.0"
2495-
source = "registry+https://github.com/rust-lang/crates.io-index"
2496-
checksum = "537b596b97c40fcf8056d153049eb22f481c17ebce72a513ec9286e4986d1bb6"
2497-
dependencies = [
2498-
"num-modular",
2499-
]
2500-
25012394
[[package]]
25022395
name = "num-rational"
25032396
version = "0.4.2"
@@ -2718,51 +2611,6 @@ dependencies = [
27182611
"libc",
27192612
]
27202613

2721-
[[package]]
2722-
name = "pest"
2723-
version = "2.7.15"
2724-
source = "registry+https://github.com/rust-lang/crates.io-index"
2725-
checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc"
2726-
dependencies = [
2727-
"memchr",
2728-
"thiserror 2.0.11",
2729-
"ucd-trie",
2730-
]
2731-
2732-
[[package]]
2733-
name = "pest_derive"
2734-
version = "2.7.15"
2735-
source = "registry+https://github.com/rust-lang/crates.io-index"
2736-
checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e"
2737-
dependencies = [
2738-
"pest",
2739-
"pest_generator",
2740-
]
2741-
2742-
[[package]]
2743-
name = "pest_generator"
2744-
version = "2.7.15"
2745-
source = "registry+https://github.com/rust-lang/crates.io-index"
2746-
checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b"
2747-
dependencies = [
2748-
"pest",
2749-
"pest_meta",
2750-
"proc-macro2",
2751-
"quote",
2752-
"syn 2.0.96",
2753-
]
2754-
2755-
[[package]]
2756-
name = "pest_meta"
2757-
version = "2.7.15"
2758-
source = "registry+https://github.com/rust-lang/crates.io-index"
2759-
checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea"
2760-
dependencies = [
2761-
"once_cell",
2762-
"pest",
2763-
"sha2",
2764-
]
2765-
27662614
[[package]]
27672615
name = "phf"
27682616
version = "0.11.3"
@@ -2921,18 +2769,6 @@ dependencies = [
29212769
"unicase",
29222770
]
29232771

2924-
[[package]]
2925-
name = "pulldown-cmark"
2926-
version = "0.10.3"
2927-
source = "registry+https://github.com/rust-lang/crates.io-index"
2928-
checksum = "76979bea66e7875e7509c4ec5300112b316af87fa7a252ca91c448b32dfe3993"
2929-
dependencies = [
2930-
"bitflags",
2931-
"memchr",
2932-
"pulldown-cmark-escape 0.10.1",
2933-
"unicase",
2934-
]
2935-
29362772
[[package]]
29372773
name = "pulldown-cmark"
29382774
version = "0.11.3"
@@ -2941,16 +2777,10 @@ checksum = "679341d22c78c6c649893cbd6c3278dcbe9fc4faa62fea3a9296ae2b50c14625"
29412777
dependencies = [
29422778
"bitflags",
29432779
"memchr",
2944-
"pulldown-cmark-escape 0.11.0",
2780+
"pulldown-cmark-escape",
29452781
"unicase",
29462782
]
29472783

2948-
[[package]]
2949-
name = "pulldown-cmark-escape"
2950-
version = "0.10.1"
2951-
source = "registry+https://github.com/rust-lang/crates.io-index"
2952-
checksum = "bd348ff538bc9caeda7ee8cad2d1d48236a1f443c1fa3913c6a02fe0043b1dd3"
2953-
29542784
[[package]]
29552785
name = "pulldown-cmark-escape"
29562786
version = "0.11.0"
@@ -3918,7 +3748,6 @@ dependencies = [
39183748
"itertools",
39193749
"rustc_abi",
39203750
"rustc_ast",
3921-
"rustc_ast_ir",
39223751
"rustc_attr_parsing",
39233752
"rustc_data_structures",
39243753
"rustc_errors",
@@ -3983,7 +3812,6 @@ dependencies = [
39833812
name = "rustc_infer"
39843813
version = "0.0.0"
39853814
dependencies = [
3986-
"rustc_ast_ir",
39873815
"rustc_data_structures",
39883816
"rustc_errors",
39893817
"rustc_fluent_macro",
@@ -4174,7 +4002,6 @@ dependencies = [
41744002
"rustc_apfloat",
41754003
"rustc_arena",
41764004
"rustc_ast",
4177-
"rustc_ast_ir",
41784005
"rustc_attr_parsing",
41794006
"rustc_data_structures",
41804007
"rustc_error_messages",
@@ -4304,7 +4131,6 @@ name = "rustc_next_trait_solver"
43044131
version = "0.0.0"
43054132
dependencies = [
43064133
"derive-where",
4307-
"rustc_ast_ir",
43084134
"rustc_data_structures",
43094135
"rustc_index",
43104136
"rustc_macros",
@@ -4624,7 +4450,6 @@ dependencies = [
46244450
"itertools",
46254451
"rustc_abi",
46264452
"rustc_ast",
4627-
"rustc_ast_ir",
46284453
"rustc_attr_parsing",
46294454
"rustc_data_structures",
46304455
"rustc_errors",
@@ -4663,7 +4488,6 @@ version = "0.0.0"
46634488
dependencies = [
46644489
"itertools",
46654490
"rustc_abi",
4666-
"rustc_ast_ir",
46674491
"rustc_data_structures",
46684492
"rustc_hir",
46694493
"rustc_infer",
@@ -4679,7 +4503,6 @@ version = "0.0.0"
46794503
dependencies = [
46804504
"itertools",
46814505
"rustc_abi",
4682-
"rustc_ast_ir",
46834506
"rustc_data_structures",
46844507
"rustc_errors",
46854508
"rustc_fluent_macro",
@@ -5310,16 +5133,6 @@ dependencies = [
53105133
"winapi-util",
53115134
]
53125135

5313-
[[package]]
5314-
name = "terminal_size"
5315-
version = "0.4.1"
5316-
source = "registry+https://github.com/rust-lang/crates.io-index"
5317-
checksum = "5352447f921fda68cf61b4101566c0bdb5104eff6804d0678e5227580ab6a4e9"
5318-
dependencies = [
5319-
"rustix",
5320-
"windows-sys 0.59.0",
5321-
]
5322-
53235136
[[package]]
53245137
name = "termize"
53255138
version = "0.1.1"
@@ -5560,12 +5373,6 @@ dependencies = [
55605373
"winnow",
55615374
]
55625375

5563-
[[package]]
5564-
name = "topological-sort"
5565-
version = "0.2.2"
5566-
source = "registry+https://github.com/rust-lang/crates.io-index"
5567-
checksum = "ea68304e134ecd095ac6c3574494fc62b909f416c4fca77e440530221e549d3d"
5568-
55695376
[[package]]
55705377
name = "tracing"
55715378
version = "0.1.37"
@@ -5686,12 +5493,6 @@ dependencies = [
56865493
"regex-lite",
56875494
]
56885495

5689-
[[package]]
5690-
name = "ucd-trie"
5691-
version = "0.1.7"
5692-
source = "registry+https://github.com/rust-lang/crates.io-index"
5693-
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
5694-
56955496
[[package]]
56965497
name = "ui_test"
56975498
version = "0.26.5"

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ members = [
1313
"src/tools/clippy/clippy_dev",
1414
"src/tools/compiletest",
1515
"src/tools/run-make-support",
16-
"src/tools/error_index_generator",
1716
"src/tools/linkchecker",
1817
"src/tools/lint-docs",
1918
"src/tools/miropt-test-tools",

0 commit comments

Comments
 (0)