diff --git a/Cargo.toml b/Cargo.toml index 91efb8ac6c..25fabc132b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -270,7 +270,7 @@ blake3 = "1.4.0" bstr = "1.5" bytecount = "0.6.3" byteorder = "1.4.3" -chrono = { version = "^0.4.26", default-features = false, features = [ "std", "alloc", "clock" ] } +chrono = { version = "^0.4.26", default-features = false, features = ["std", "alloc", "clock"] } clap = { version = "4.3", features = ["wrap_help", "cargo"] } clap_complete = "4.3" clap_mangen = "0.2" @@ -294,7 +294,7 @@ indicatif = "0.17" is-terminal = "0.4.7" itertools = "0.10.5" libc = "0.2.146" -lscolors = { version = "0.14.0", default-features = false, features = [ "nu-ansi-term" ] } +lscolors = { version = "0.14.0", default-features = false, features = ["nu-ansi-term"] } md-5 = "0.10.5" memchr = "2" nix = { version = "0.26", default-features = false } diff --git a/src/uucore/Cargo.toml b/src/uucore/Cargo.toml index c1e0ca21e1..a58e0d58be 100644 --- a/src/uucore/Cargo.toml +++ b/src/uucore/Cargo.toml @@ -38,15 +38,15 @@ sha2 = { workspace = true } sha3 = { workspace = true } sm3 = { workspace = true } # * optional -data-encoding = { version="2.3", optional=true } -data-encoding-macro = { version="0.1.12", optional=true } -dns-lookup = { version="1.0.8", optional=true } -itertools = { version="0.10.5", optional=true } -libc = { version="0.2.144", optional=true } -z85 = { version="3.0.5", optional=true } +data-encoding = { version = "2.3", optional = true } +data-encoding-macro = { version = "0.1.12", optional = true } +dns-lookup = { version = "1.0.8", optional = true } +itertools = { version = "0.10.5", optional = true } +libc = { version = "0.2.144", optional = true } +z85 = { version = "3.0.5", optional = true } # * optional/workspace -thiserror = { workspace=true, optional=true } -time = { workspace=true, optional=true, features = ["formatting", "local-offset", "macros"] } +thiserror = { workspace = true, optional = true } +time = { workspace = true, optional = true, features = ["formatting", "local-offset", "macros"] } # * "problem" dependencies (pinned); note: examples are retained for reference ## * backtrace: transitive dependency via 'failure'; pin to <= v0.3.30 to avoid increasing MinSRV to v1.33.0 #backtrace = ">= 0.3.3, <= 0.3.30" @@ -56,17 +56,17 @@ time = { workspace=true, optional=true, features = ["formatting", "local-offset" #libc = { version = "0.2.15, <= 0.2.66", optional = true } [target.'cfg(unix)'.dependencies] -walkdir = { workspace=true, optional=true } -nix = { workspace=true, features = ["fs", "uio", "zerocopy", "signal"] } +walkdir = { workspace = true, optional = true } +nix = { workspace = true, features = ["fs", "uio", "zerocopy", "signal"] } [target.'cfg(target_os = "windows")'.dependencies] -winapi-util = { version= "0.1.5", optional=true } +winapi-util = { version = "0.1.5", optional = true } windows-sys = { version = "0.45.0", optional = true, default-features = false, features = ["Win32_Storage_FileSystem", "Win32_Foundation", "Win32_System_WindowsProgramming"] } [dev-dependencies] -clap = { workspace=true } -once_cell = { workspace=true } -tempfile = { workspace=true } +clap = { workspace = true } +once_cell = { workspace = true } +tempfile = { workspace = true } [features] default = []