Skip to content

Commit

Permalink
refactor ~ taplo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
rivy committed Jun 19, 2023
1 parent 56aa906 commit 1fd90d4
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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 }
Expand Down
28 changes: 14 additions & 14 deletions src/uucore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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 = []
Expand Down

0 comments on commit 1fd90d4

Please sign in to comment.