From 9aa105519615d3a861d306f0a0eaa21d4aeb8bcd Mon Sep 17 00:00:00 2001 From: mattsu <35655889+mattsu2020@users.noreply.github.com> Date: Tue, 21 Oct 2025 16:15:39 +0900 Subject: [PATCH] fix procfs dependencies (#8968) --- Cargo.toml | 1 + src/uucore/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4c10113b3..9741b7d7f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -356,6 +356,7 @@ parse_datetime = "0.11.0" phf = "0.13.1" phf_codegen = "0.13.1" platform-info = "2.0.3" +procfs = "0.18" rand = { version = "0.9.0", features = ["small_rng"] } rand_core = "0.9.0" rayon = "1.10" diff --git a/src/uucore/Cargo.toml b/src/uucore/Cargo.toml index 43ed7fa68..d5def4b09 100644 --- a/src/uucore/Cargo.toml +++ b/src/uucore/Cargo.toml @@ -102,7 +102,7 @@ xattr = { workspace = true, optional = true } tempfile = { workspace = true } [target.'cfg(target_os = "linux")'.dependencies] -procfs = "0.18" +procfs = { workspace = true } [target.'cfg(target_os = "windows")'.dependencies] winapi-util = { workspace = true, optional = true }