From fe9ec37141a67e9d305a6fde1003000df3404f4a Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Sat, 22 Jul 2023 16:14:32 +0200 Subject: [PATCH] uucore: use "workspace=true" for some dependencies --- src/uucore/Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/uucore/Cargo.toml b/src/uucore/Cargo.toml index 7e2133a5eed..d376e807a20 100644 --- a/src/uucore/Cargo.toml +++ b/src/uucore/Cargo.toml @@ -23,9 +23,9 @@ uucore_procs = { workspace = true } dns-lookup = { version = "2.0.2", optional = true } dunce = "1.0.4" wild = "2.1" -glob = "0.3.1" +glob = { workspace = true } # * optional -itertools = { version = "0.11.0", optional = true } +itertools = { workspace = true, optional = true } thiserror = { workspace = true, optional = true } time = { workspace = true, optional = true, features = [ "formatting", @@ -36,7 +36,7 @@ time = { workspace = true, optional = true, features = [ data-encoding = { version = "2.4", optional = true } data-encoding-macro = { version = "0.1.13", optional = true } z85 = { version = "3.0.5", optional = true } -libc = { version = "0.2.147", optional = true } +libc = { workspace = true, optional = true } once_cell = { workspace = true } os_display = "0.1.3" @@ -61,8 +61,8 @@ once_cell = { workspace = true } tempfile = { workspace = true } [target.'cfg(target_os = "windows")'.dependencies] -winapi-util = { version = "0.1.5", optional = true } -windows-sys = { version = "0.48.0", optional = true, default-features = false, features = [ +winapi-util = { workspace = true, optional = true } +windows-sys = { workspace = true, optional = true, default-features = false, features = [ "Win32_Storage_FileSystem", "Win32_Foundation", "Win32_System_WindowsProgramming",