feat: update axum

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2023-12-23 13:39:28 +01:00
parent 5b74e4f125
commit a093c7830d
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912
2 changed files with 6 additions and 6 deletions

View File

@ -5,10 +5,10 @@ resolver = "2"
[workspace.dependencies]
%%name%% = { path = "crates/%%name%%" }
anyhow = { version = "1.0.71" }
anyhow = { version = "1" }
tokio = { version = "1", features = ["full"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3.17" }
clap = { version = "4.3.4", features = ["derive", "env"] }
dotenv = { version = "0.15.0" }
axum = { version = "0.6.18" }
clap = { version = "4", features = ["derive", "env"] }
dotenv = { version = "0.15" }
axum = { version = "0.7" }

View File

@ -33,8 +33,8 @@ async fn main() -> anyhow::Result<()> {
let app = Router::new().route("/", get(root));
tracing::info!("listening on {}", host);
axum::Server::bind(&host)
.serve(app.into_make_service())
let listener = tokio::net::TcpListener::bind(host).await.unwrap();
axum::serve(listener, app.into_make_service())
.await
.unwrap();
}