missing dependencies from previous commit
This commit is contained in:
parent
fe926086c2
commit
1e6bc916b8
2 changed files with 4 additions and 1 deletions
|
@ -19,3 +19,5 @@ futures = "0.3"
|
||||||
sanitize-filename = "0.3.0"
|
sanitize-filename = "0.3.0"
|
||||||
log = "0.4"
|
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()))?
|
.bind(format!("127.0.0.1:{}", args.port.to_string()))?
|
||||||
|
.workers(args.threads as usize)
|
||||||
.run()
|
.run()
|
||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue