Skip to content

Commit

Permalink
Merge pull request #5110 from cakebaker/uucore_use_workspace
Browse files Browse the repository at this point in the history
uucore: use "workspace=true" for some dependencies
  • Loading branch information
sylvestre authored Jul 24, 2023
2 parents e77a1bf + fe9ec37 commit a229675
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/uucore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"

Expand All @@ -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",
Expand Down

0 comments on commit a229675

Please sign in to comment.