mirror of
https://github.com/terrapkg/packages.git
synced 2026-05-31 17:11:56 +00:00
729b0a6f2a
* Update metadata patch Signed-off-by: Gilver <rockgrub@disroot.org> * Create coreutils-drop-conv.diff Signed-off-by: Gilver <rockgrub@disroot.org> * Nevermind this is unused??? Signed-off-by: Gilver <rockgrub@disroot.org> * Drop dates I guess? Signed-off-by: Gilver <rockgrub@disroot.org> * Manual update Signed-off-by: Gilver <rockgrub@disroot.org> * Wh Signed-off-by: Gilver <rockgrub@disroot.org> --------- Signed-off-by: Gilver <rockgrub@disroot.org>
54 lines
1.3 KiB
Diff
54 lines
1.3 KiB
Diff
--- coreutils-*/Cargo.toml
|
|
+++ coreutils-*/Cargo.toml
|
|
@@ -18,6 +18,7 @@
|
|
categories = ["command-line-utilities"]
|
|
rust-version = "1.82.0"
|
|
edition = "2021"
|
|
+autobins = false
|
|
|
|
build = "build.rs"
|
|
|
|
@@ -25,7 +26,11 @@
|
|
all-features = true
|
|
|
|
[features]
|
|
-default = ["feat_common_core"]
|
|
+default = [
|
|
+ "feat_acl",
|
|
+ "feat_common_core",
|
|
+ "feat_selinux",
|
|
+]
|
|
## OS feature shortcodes
|
|
macos = ["feat_os_macos"]
|
|
unix = ["feat_os_unix"]
|
|
@@ -325,7 +330,7 @@
|
|
rand_core = "0.9.0"
|
|
rayon = "1.10"
|
|
regex = "1.10.4"
|
|
-rstest = "0.25.0"
|
|
+rstest = ">=0.25,<0.28"
|
|
rust-ini = "0.21.0"
|
|
same-file = "1.0.6"
|
|
self_cell = "1.0.4"
|
|
@@ -516,7 +521,7 @@
|
|
rstest = { workspace = true }
|
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dev-dependencies]
|
|
-procfs = { version = "0.17", default-features = false }
|
|
+procfs = { version = ">=0.17, <0.18", default-features = false }
|
|
|
|
[target.'cfg(unix)'.dev-dependencies]
|
|
nix = { workspace = true, features = ["process", "signal", "user", "term"] }
|
|
@@ -538,11 +543,6 @@
|
|
name = "coreutils"
|
|
path = "src/bin/coreutils.rs"
|
|
|
|
-[[bin]]
|
|
-name = "uudoc"
|
|
-path = "src/bin/uudoc.rs"
|
|
-required-features = ["uudoc"]
|
|
-
|
|
# The default release profile. It contains all optimizations, without
|
|
# sacrificing debug info. With this profile (like in the standard
|
|
# release profile), the debug info and the stack traces will still be available.
|