missing dependencies from previous commit

This commit is contained in:
Daniel Szabo 2022-05-08 16:37:54 +01:00
parent fe926086c2
commit 1e6bc916b8
2 changed files with 4 additions and 1 deletions

View file

@ -18,4 +18,6 @@ actix-multipart = "0.4.0"
futures = "0.3"
sanitize-filename = "0.3.0"
log = "0.4"
env_logger = "0.9.0"
env_logger = "0.9.0"
actix-web-httpauth = "0.6.0"
lazy_static = "1.4.0"

View file

@ -377,6 +377,7 @@ async fn main() -> std::io::Result<()> {
))
})
.bind(format!("127.0.0.1:{}", args.port.to_string()))?
.workers(args.threads as usize)
.run()
.await
}