From dafbd4bd6f8b607ce819c40bbc553818dd16eb8a Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Tue, 30 Jul 2024 14:55:32 +0200 Subject: [PATCH 1/3] uucore: use "workspace = true" for dns-lookup --- src/uucore/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uucore/Cargo.toml b/src/uucore/Cargo.toml index ff4ef1c22..dd48d1b4f 100644 --- a/src/uucore/Cargo.toml +++ b/src/uucore/Cargo.toml @@ -21,7 +21,7 @@ path = "src/lib/lib.rs" clap = { workspace = true } uucore_procs = { workspace = true } number_prefix = { workspace = true } -dns-lookup = { version = "2.0.4", optional = true } +dns-lookup = { workspace = true, optional = true } dunce = { version = "1.0.4", optional = true } wild = "2.2.1" glob = { workspace = true } From e0640b2e7952c5e77f2a3af86a17a15914d59f91 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Tue, 30 Jul 2024 15:19:58 +0200 Subject: [PATCH 2/3] Cargo.toml: use "workspace = true" for sha1 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 24cdd77d2..8cc7dd9b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -495,7 +495,7 @@ num-prime = { workspace = true } pretty_assertions = "1.4.0" rand = { workspace = true } regex = { workspace = true } -sha1 = { version = "0.10.6", features = ["std"] } +sha1 = { workspace = true, features = ["std"] } tempfile = { workspace = true } time = { workspace = true, features = ["local-offset"] } unindent = "0.2.3" From 565a36a88be72b0b4b833d46858050cff4200658 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Tue, 30 Jul 2024 15:21:52 +0200 Subject: [PATCH 3/3] df: use "workspace = true" for tempfile --- src/uu/df/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uu/df/Cargo.toml b/src/uu/df/Cargo.toml index 9ff116428..f04ec87cc 100644 --- a/src/uu/df/Cargo.toml +++ b/src/uu/df/Cargo.toml @@ -22,7 +22,7 @@ uucore = { workspace = true, features = ["libc", "fsext"] } unicode-width = { workspace = true } [dev-dependencies] -tempfile = "3.10.1" +tempfile = { workspace = true } [[bin]] name = "df"