From 0a6f1758b913b8bd9a7190f1e0654ede054a1ac4 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sun, 2 Apr 2023 20:59:02 +0200 Subject: [PATCH 1/2] add missing feature --- src/uu/hashsum/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uu/hashsum/Cargo.toml b/src/uu/hashsum/Cargo.toml index a75141e93..638b3b60f 100644 --- a/src/uu/hashsum/Cargo.toml +++ b/src/uu/hashsum/Cargo.toml @@ -16,7 +16,7 @@ path = "src/hashsum.rs" [dependencies] clap = { workspace=true } -uucore = { workspace=true } +uucore = { workspace=true, features=["sum"] } memchr = { workspace=true } regex = { workspace=true } hex = { workspace=true } From eb11c4006f3286efee5226e546f119a20998266b Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sun, 2 Apr 2023 21:00:08 +0200 Subject: [PATCH 2/2] tee: add missing feature --- src/uu/tee/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uu/tee/Cargo.toml b/src/uu/tee/Cargo.toml index 36e4f0dd4..b0cf0e916 100644 --- a/src/uu/tee/Cargo.toml +++ b/src/uu/tee/Cargo.toml @@ -17,7 +17,7 @@ path = "src/tee.rs" [dependencies] clap = { workspace=true } libc = { workspace=true } -uucore = { workspace=true, features=["libc"] } +uucore = { workspace=true, features=["libc", "signals"] } [[bin]] name = "tee"