From e5f47347f8aa1eedfe27ad4c71124fa916485f34 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 16:07:45 +0000 Subject: [PATCH] chore(deps)(deps): Update axum requirement from 0.7 to 0.8 Updates the requirements on [axum](https://github.com/tokio-rs/axum) to permit the latest version. - [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 ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 07bd0221..d4df0403 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -82,7 +82,7 @@ config = "0.14" figment = { version = "0.10", features = ["toml", "env"] } # HTTP Server & Client -axum = { version = "0.7", features = ["json", "tokio"] } +axum = { version = "0.8", features = ["json", "tokio"] } tower = { version = "0.4", features = ["timeout", "limit", "util"] } tower-http = { version = "0.5", features = ["trace", "cors", "timeout"] } reqwest = { version = "0.11", features = ["json", "rustls-tls"], default-features = false }