aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorSven-Hendrik Haase <svenstaro@gmail.com>2024-01-13 04:21:15 +0000
committerSven-Hendrik Haase <svenstaro@gmail.com>2024-01-13 04:21:15 +0000
commit1923d2bdc31cd34b8cd807ed1593e39188225a87 (patch)
tree3dbbbdb027cfde4cdb1d7d31846a211d07644a4c /Cargo.toml
parentRefer to Helm chart by @wrenix (fixes #1215) (diff)
downloadminiserve-1923d2bdc31cd34b8cd807ed1593e39188225a87.tar.gz
miniserve-1923d2bdc31cd34b8cd807ed1593e39188225a87.zip
Use tokio::fs instead of std::fs to enable async file operations (fixes #445)
Diffstat (limited to '')
-rw-r--r--Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index dae4e6c..b5e65e3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -57,6 +57,7 @@ socket2 = "0.5"
strum = { version = "0.25", features = ["derive"] }
tar = "0.4"
thiserror = "1"
+tokio = { version = "1.35.1", features = ["fs"] }
zip = { version = "0.6.5", default-features = false }
[features]