From 01a3976310c0b3f3cbd0696d67bb4b1f2f1d4ae9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 14:44:50 +0000 Subject: [PATCH] deps(rust): Update axum requirement Updates the requirements on [axum](https://github.com/tokio-rs/axum) to permit the latest version. Updates `axum` to 0.8.9 - [Release notes](https://github.com/tokio-rs/axum/releases) - [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/axum/compare/axum-v0.7.0...axum-v0.8.9) --- updated-dependencies: - dependency-name: axum dependency-version: 0.8.9 dependency-type: direct:production dependency-group: axum-stack ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index df3cc3b..5817161 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,6 +25,6 @@ tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } anyhow = "1.0" thiserror = "1.0" -axum = { version = "0.7", features = ["macros"] } +axum = { version = "0.8", features = ["macros"] } reqwest = { version = "0.12", features = ["json", "stream"] } sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "macros"] }