1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 03:57:44 +00:00

Merge pull request #5110 from cakebaker/uucore_use_workspace

uucore: use "workspace=true" for some dependencies
This commit is contained in:
Sylvestre Ledru 2023-07-24 14:40:35 +02:00 committed by GitHub
commit a2296759da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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",