chore: cargo update

This commit is contained in:
2025-01-23 10:58:33 +01:00
parent 67fbb7dc73
commit f6e7d9fcbf
3 changed files with 23 additions and 44 deletions

View File

@@ -147,6 +147,7 @@ async fn serve() -> Result<(), Error> {
.nest_service("/files", file_service("datastore/public"))
.fallback(leptos_axum::file_and_error_handler(shell))
.with_state(leptos_options);
let listener = tokio::net::TcpListener::bind(&addr).await?;
tracing::info!("Listening on http://{addr}");
axum::serve(listener, app.into_make_service()).await?;