aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-server/Cargo.toml
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2026-03-09 15:23:15 -0700
committerEllie Huxtable <ellie@elliehuxtable.com>2026-03-09 16:10:21 -0700
commit84f1867a21ef229b9eaa671be3775fae3b69ac4b (patch)
tree7b15ed5db03a156fe2a313e60e7e2f60cb6d561b /crates/atuin-server/Cargo.toml
parentchore: upgrade thiserror 1.x to 2.x to deduplicate dependency (diff)
downloadatuin-84f1867a21ef229b9eaa671be3775fae3b69ac4b.zip
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).
Diffstat (limited to 'crates/atuin-server/Cargo.toml')
-rw-r--r--crates/atuin-server/Cargo.toml3
1 files changed, 1 insertions, 2 deletions
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"] }