Skip to content

Commit

Permalink
Merge pull request #6601 from cakebaker/uucore_use_workspace_dependency
Browse files Browse the repository at this point in the history
Use `workspace = true` for some dependencies
  • Loading branch information
sylvestre authored Aug 2, 2024
2 parents a670f2d + 565a36a commit e33cecd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/uu/df/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/uucore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit e33cecd

Please sign in to comment.