mirror of
https://github.com/szabodanika/microbin
synced 2024-11-14 13:17:05 +00:00
missing dependencies from previous commit
This commit is contained in:
parent
fe926086c2
commit
1e6bc916b8
2 changed files with 4 additions and 1 deletions
|
@ -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"
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue