Skip to content

Commit b2df13e

Browse files
committed
Auto merge of #84382 - ehuss:update-beta-cargo, r=ehuss
[beta] Beta rollups - Upgrade expat dependency in riscv64 to newer version. #84394 - Fix Self keyword doc URL conflict on case insensitive file systems (until definitely fixed on rustdoc) #83678 - Cargo: - Backport "Don't give a hard error when the end-user specifies RUSTC_BOOTSTRAP=crate_name" (rust-lang/cargo#9385) - [beta] Revert rust-lang/cargo#9133, moving to git HEAD dependencies by default (rust-lang/cargo#9383)
2 parents 2157381 + 9787d0c commit b2df13e

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

library/std/src/keyword_docs.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1310,7 +1310,11 @@ mod return_keyword {}
13101310
/// [Reference]: ../reference/items/associated-items.html#methods
13111311
mod self_keyword {}
13121312

1313-
#[doc(keyword = "Self")]
1313+
// FIXME: Once rustdoc can handle URL conflicts on case insensitive file systems, we can remove the
1314+
// three next lines and put back: `#[doc(keyword = "Self")]`.
1315+
#[doc(alias = "Self")]
1316+
#[allow(rustc::existing_doc_keyword)]
1317+
#[doc(keyword = "SelfTy")]
13141318
//
13151319
/// The implementing type within a [`trait`] or [`impl`] block, or the current type within a type
13161320
/// definition.

src/ci/docker/host-x86_64/dist-riscv64-linux/riscv64-unknown-linux-gnu.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ CT_EXPAT_PATCH_GLOBAL=y
644644
CT_EXPAT_PATCH_ORDER="global"
645645
CT_EXPAT_V_2_2=y
646646
# CT_EXPAT_NO_VERSIONS is not set
647-
CT_EXPAT_VERSION="2.2.6"
647+
CT_EXPAT_VERSION="2.3.0"
648648
CT_EXPAT_MIRRORS="http://downloads.sourceforge.net/project/expat/expat/${CT_EXPAT_VERSION}"
649649
CT_EXPAT_ARCHIVE_FILENAME="@{pkg_name}-@{version}"
650650
CT_EXPAT_ARCHIVE_DIRNAME="@{pkg_name}-@{version}"

0 commit comments

Comments
 (0)