Allow procfs 0.17

This commit is contained in:
Benjamin A. Beasley 2024-12-04 20:07:38 -05:00
commit 752cd51aec
3 changed files with 12 additions and 1 deletions

View file

@ -1,5 +1,5 @@
--- coreutils-0.0.27/Cargo.toml 1970-01-01T00:00:01+00:00
+++ coreutils-0.0.27/Cargo.toml 2024-12-05T01:03:40.090670+00:00
+++ coreutils-0.0.27/Cargo.toml 2024-12-05T01:07:05.985631+00:00
@@ -30,6 +30,7 @@
categories = ["command-line-utilities"]
license = "MIT"
@ -42,3 +42,12 @@
feat_Tier1 = [
"feat_common_core",
"arch",
@@ -878,7 +878,7 @@
version = "0.5.1"
[target."cfg(any(target_os = \"linux\", target_os = \"android\"))".dev-dependencies.procfs]
-version = "0.16"
+version = ">=0.16, <0.18"
default-features = false
[target."cfg(unix)".dev-dependencies.nix]

View file

@ -20,6 +20,7 @@ Source2: coreutils-ls-commands.sh
# * allow up to rstest 0.23
# * enable feat_acl
# * TODO: enable unix
# * allow procfs 0.17
Patch: coreutils-fix-metadata.diff
# * Fix seq tests that pass negative numbers
Patch2: coreutils-fix-seq-neg-num-tests.diff

View file

@ -7,6 +7,7 @@ cargo-toml-patch-comments = [
"allow up to rstest 0.23",
"enable feat_acl",
"TODO: enable unix",
"allow procfs 0.17",
]
extra-sources = [
{ "number" = 1, "file" = "coreutils-wrapper.sh", "comments" = ["Wrapper to invoke coreutils multicall via individual libexec symlink"] },