From 436161ac5ec0d08c96041a031274df8c50719508 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Wed, 3 Dec 2025 10:21:42 +0100 Subject: [PATCH 1/2] Bump libc from 0.2.175 to 0.2.178 --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 04a008d4686..1df79f0acf7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1651,9 +1651,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.175" +version = "0.2.178" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543" +checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091" [[package]] name = "libloading" From e24182c5b9764a8064c2d3afef17a3ba68119f35 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Wed, 3 Dec 2025 10:22:16 +0100 Subject: [PATCH 2/2] uucore/fs: disable useless_conversion lint It shows a warning on FreeBSD I'm unable to fix. --- src/uucore/src/lib/features/fs.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/uucore/src/lib/features/fs.rs b/src/uucore/src/lib/features/fs.rs index 16de054a3c2..1f8976fc7e2 100644 --- a/src/uucore/src/lib/features/fs.rs +++ b/src/uucore/src/lib/features/fs.rs @@ -112,6 +112,7 @@ impl FileInformation { self.0.file_index() } + #[allow(clippy::useless_conversion)] // TODO: fix warning on FreeBSD pub fn number_of_links(&self) -> u64 { #[cfg(all( unix, @@ -157,6 +158,7 @@ impl FileInformation { } #[cfg(unix)] + #[allow(clippy::useless_conversion)] // TODO: fix warning on FreeBSD pub fn inode(&self) -> u64 { #[cfg(all( not(any(target_os = "freebsd", target_os = "netbsd")),