From 84f1867a21ef229b9eaa671be3775fae3b69ac4b Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Mon, 9 Mar 2026 15:23:15 -0700 Subject: chore: upgrade axum 0.7 to 0.8 to deduplicate with tonic's axum atuin-server used axum 0.7 while tonic already pulled in axum 0.8, resulting in both versions compiled into the binary. Migrates to axum 0.8: path params use {param} syntax, FromRequestParts uses native async traits (dropping async-trait dep from atuin-server). --- crates/atuin-server/Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'crates/atuin-server/Cargo.toml') diff --git a/crates/atuin-server/Cargo.toml b/crates/atuin-server/Cargo.toml index 9627cb7a..b7779899 100644 --- a/crates/atuin-server/Cargo.toml +++ b/crates/atuin-server/Cargo.toml @@ -32,8 +32,7 @@ serde = { workspace = true } serde_json = { workspace = true } rand = { workspace = true } tokio = { workspace = true } -async-trait = { workspace = true } -axum = "0.7" +axum = "0.8" fs-err = { workspace = true } tower = { workspace = true } tower-http = { version = "0.6", features = ["trace"] } -- cgit v1.3.1