1
Fork 0
mirror of https://github.com/RGBCube/Site synced 2025-07-31 13:07:46 +00:00

Fix checks

This commit is contained in:
RGBCube 2023-12-30 15:27:18 +03:00
parent 3950f840ad
commit 49996cdc58
No known key found for this signature in database
2 changed files with 1 additions and 3 deletions

View file

@ -89,8 +89,6 @@
audit = crane.cargoAudit (srcArgs // {
inherit advisory-db;
});
deny = crane.cargoDeny srcArgs;
};
packages.${system} = {

View file

@ -26,7 +26,7 @@ async fn main() -> anyhow::Result<()> {
.target(env_logger::Target::Stdout)
.init();
HttpServer::new(|| App::new())
HttpServer::new(App::new)
.bind(("0.0.0.0", args.port))
.with_context(|| format!("Failed to bind to 0.0.0.0:{port}", port = args.port))?
.run()