diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2025-03-03 03:54:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-03 03:54:51 +0000 |
commit | c26b74c8a9f47f86b39a687b20d769e3b349fd8d (patch) | |
tree | 1c562da6fbcba9900ce85e300cc9298a0ddf23c8 /Cargo.toml | |
parent | Merge pull request #1478 from svenstaro/dependabot/cargo/all-dependencies-65d... (diff) | |
parent | feat: validate temp dir exists through `value_parser` and fixed clippy issues (diff) | |
download | miniserve-c26b74c8a9f47f86b39a687b20d769e3b349fd8d.tar.gz miniserve-c26b74c8a9f47f86b39a687b20d769e3b349fd8d.zip |
Merge pull request #1431 from AlecDivito/upload-progress-bar
feat: Added HTML and Javascript progress bar when uploading files
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -56,8 +56,9 @@ simplelog = "0.12" socket2 = "0.5" strum = { version = "0.27", features = ["derive"] } tar = "0.4" +tempfile = "3.17.0" thiserror = "2" -tokio = { version = "1.42.0", features = ["fs"] } +tokio = { version = "1.42.0", features = ["fs", "macros"] } zip = { version = "2", default-features = false } [features] |