diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-10-28 20:35:17 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-10-28 20:35:17 +0100 |
| commit | 9516a7858443d16bb88871e76fb8848987c7a7a7 (patch) | |
| tree | 1fa594f9bcbdf1eae1ed07dfec77fb238693494d /Cargo.toml | |
| parent | 6fb23fc567e0d73f06972aa88337ceac97a55a4e (diff) | |
Since calculating the total count takes up time,
we do not use the progress bar anymore, but just
a total files copied.
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -2,11 +2,12 @@ name = "progcp" version = "0.1.0" edition = "2021" +author = "Nathan P. Reiner" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.81" -kdam = "0.5.1" -tokio = { version = "1.37.0", features = ["full"] } +clap = { version = "4.5.4", features = ["derive"] } +tokio = { version = "1.41.0", features = ["full"] } walkdir = "2.5.0" |