renice merge

This commit is contained in:
Sylvestre Ledru
2024-01-16 19:23:50 +01:00
parent e99a1184d0
commit 0232b7ba76
2 changed files with 11 additions and 0 deletions

8
Cargo.lock generated
View File

@@ -1312,6 +1312,7 @@ dependencies = [
"unindent",
"uu_lscpu",
"uu_pwdx",
"uu_renice",
"walkdir",
"zip",
]
@@ -1328,6 +1329,13 @@ dependencies = [
name = "uu_pwdx"
version = "0.0.1"
[[package]]
name = "uu_renice"
version = "0.0.1"
dependencies = [
"libc",
]
[[package]]
name = "version_check"
version = "0.9.4"

View File

@@ -40,6 +40,8 @@ test_unimplemented = []
# "feat_common_core" == baseline core set of utilities which can be built/run on most targets
feat_common_core = [
"uu_pwdx",
"uu_renice",
"uu_lscpu",
]
[workspace.dependencies]
@@ -144,6 +146,7 @@ zip = { workspace = true, optional = true }
#
uu_pwdx = { optional = true, version = "0.0.1", package = "uu_pwdx", path = "src/uu/pwdx" }
uu_lscpu = { optional = true, version = "0.0.1", package = "uu_lscpu", path = "src/uu/lscpu" }
uu_renice = { optional = true, version = "0.0.1", package = "uu_renice", path = "src/uu/renice" }
# this breaks clippy linting with: "tests/by-util/test_factor_benches.rs: No such file or directory (os error 2)"
# factor_benches = { optional = true, version = "0.0.0", package = "uu_factor_benches", path = "tests/benches/factor" }