diff --git a/Cargo.lock b/Cargo.lock index cd13578..800c0af 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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" diff --git a/Cargo.toml b/Cargo.toml index 1298f7f..48ebf16 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" }