Skip to content
Closed
Changes from 2 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
9f7dc2e
Extract version check from ensure_version_or_cargo_install
Shunpoco Dec 21, 2025
b305a98
implpement if_installed for spellcheck
Shunpoco Dec 21, 2025
70d8c61
implement shellcheck
Shunpoco Dec 25, 2025
258708f
implement js check
Shunpoco Dec 25, 2025
5642a2d
implement py and cpp
Shunpoco Dec 26, 2025
6da3605
Prepare for merging from rust-lang/rust
invalid-email-address Dec 28, 2025
a5ed928
Merge ref '23d01cd24125' from rust-lang/rust
invalid-email-address Dec 28, 2025
380e4d2
compiler-builtins: Revert "cpuid is safe since the stdarch sync, so r…
tgross35 Dec 28, 2025
1276564
Ignore unused_unsafe lint in libm/src/math/arch/x86/detect.rs
taiki-e Dec 27, 2025
b49e56d
fix typo (this commit will be squashed after review)
Shunpoco Dec 29, 2025
215768a
fix missing_panics_doc in `std::os::fd::owned`
xtqqczze Dec 31, 2025
68ea14a
address review
Shunpoco Jan 1, 2026
0d366e0
Fix a typo in `libm::Libm::roundeven`
the-ssd Jan 2, 2026
65639fe
ci: Move the dependency installs and wall time benchmarks to scripts
tgross35 Jan 4, 2026
08e0400
add unit test for ExtraCheckArg::from_str
Shunpoco Jan 4, 2026
dfe7d8a
move ensure_version/ensure_version_or_cargo_install to extra_checks
Shunpoco Jan 4, 2026
3f773fa
std: sys: fs: uefi: Implement remove_dir_all
Ayush1325 Dec 31, 2025
0dfff23
address reviews
Shunpoco Jan 6, 2026
69bedd1
compiler-builtins: Enable AArch64 `__chkstk` for MinGW
mati865 Jan 7, 2026
64c78f6
make `MarkdownItemInfo` a field struct
folkertdev Jan 5, 2026
3be74a7
render intra-doc links in the `#[deprectated]` note
folkertdev Jan 6, 2026
aec8b69
Minor cleanups to fn_abi_new_uncached
bjorn3 Jan 7, 2026
47c5f58
Update libc to v0.2.180
thesummer Jan 7, 2026
27b1083
Update `literal-escaper` version to `0.0.7`
GuillaumeGomez Jan 8, 2026
6b88c6b
store defids instead of symbol names in the aliases list
jdonszelmann Jan 8, 2026
9f3956f
MGCA: literals support
Human9000-bit Jan 5, 2026
1eb605f
Query associated_item_def_ids when needed
cvengler Jan 8, 2026
f9425b1
Rollup merge of #149961 - add-optional-spellcheck-in-pre-hook, r=lolb…
matthiaskrgr Jan 8, 2026
710c59e
Rollup merge of #150533 - uefi-fs-rmdirall, r=ChrisDenton
matthiaskrgr Jan 8, 2026
ae4aeb6
Rollup merge of #150549 - patch-1, r=ChrisDenton
matthiaskrgr Jan 8, 2026
5a3e316
Rollup merge of #150699 - literals-as-direct-const-args, r=BoxyUwU
matthiaskrgr Jan 8, 2026
bb9d28f
Rollup merge of #150721 - deprecated-doc-intra-link, r=GuillaumeGomez
matthiaskrgr Jan 8, 2026
14496d2
Rollup merge of #150752 - update-libc-0.2.179, r=tgross35
matthiaskrgr Jan 8, 2026
0af4f1f
Rollup merge of #150802 - fn_abi_cleanup, r=lqd
matthiaskrgr Jan 8, 2026
94ec9fc
Rollup merge of #150803 - update-builtins, r=tgross35
matthiaskrgr Jan 8, 2026
6d3b99d
Rollup merge of #150809 - update-literal-escaper, r=Urgau
matthiaskrgr Jan 8, 2026
70708da
Rollup merge of #150811 - defid-aliases, r=bjorn3
matthiaskrgr Jan 8, 2026
8987204
Rollup merge of #150825 - move-items, r=JonathanBrouwer
matthiaskrgr Jan 8, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions library/std/src/sys/fs/uefi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::fs::TryLockError;
use crate::hash::Hash;
use crate::io::{self, BorrowedCursor, IoSlice, IoSliceMut, SeekFrom};
use crate::path::{Path, PathBuf};
pub use crate::sys::fs::common::Dir;
pub use crate::sys::fs::common::{Dir, remove_dir_all};
use crate::sys::pal::{helpers, unsupported};
use crate::sys::time::SystemTime;

Expand Down Expand Up @@ -481,10 +481,6 @@ pub fn rmdir(p: &Path) -> io::Result<()> {
}
}

pub fn remove_dir_all(_path: &Path) -> io::Result<()> {
unsupported()
}

pub fn exists(path: &Path) -> io::Result<bool> {
let f = uefi_fs::File::from_path(path, r_efi::protocols::file::MODE_READ, 0);
match f {
Expand Down