mirror of
https://github.com/RGBCube/Site
synced 2025-08-01 13:37:49 +00:00
Fix checks
This commit is contained in:
parent
3950f840ad
commit
49996cdc58
2 changed files with 1 additions and 3 deletions
|
@ -89,8 +89,6 @@
|
||||||
audit = crane.cargoAudit (srcArgs // {
|
audit = crane.cargoAudit (srcArgs // {
|
||||||
inherit advisory-db;
|
inherit advisory-db;
|
||||||
});
|
});
|
||||||
|
|
||||||
deny = crane.cargoDeny srcArgs;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
packages.${system} = {
|
packages.${system} = {
|
||||||
|
|
|
@ -26,7 +26,7 @@ async fn main() -> anyhow::Result<()> {
|
||||||
.target(env_logger::Target::Stdout)
|
.target(env_logger::Target::Stdout)
|
||||||
.init();
|
.init();
|
||||||
|
|
||||||
HttpServer::new(|| App::new())
|
HttpServer::new(App::new)
|
||||||
.bind(("0.0.0.0", args.port))
|
.bind(("0.0.0.0", args.port))
|
||||||
.with_context(|| format!("Failed to bind to 0.0.0.0:{port}", port = args.port))?
|
.with_context(|| format!("Failed to bind to 0.0.0.0:{port}", port = args.port))?
|
||||||
.run()
|
.run()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue