From 34862c44c5af4f29b37115d1e1dc005955014dad Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jun 2026 01:00:10 +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] --- crates/octo-adapter-webhook/Cargo.toml | 2 +- crates/quota-router-core/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/octo-adapter-webhook/Cargo.toml b/crates/octo-adapter-webhook/Cargo.toml index b0154de5..c3cca02f 100644 --- a/crates/octo-adapter-webhook/Cargo.toml +++ b/crates/octo-adapter-webhook/Cargo.toml @@ -11,7 +11,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" reqwest = { version = "0.12", features = ["json"] } tokio = { version = "1.35", features = ["rt-multi-thread", "macros", "time", "sync"] } -axum = "0.7" +axum = "0.8" blake3 = "1.5" async-trait = "0.1" hmac = "0.12" diff --git a/crates/quota-router-core/Cargo.toml b/crates/quota-router-core/Cargo.toml index a0a1ac72..906dc56c 100644 --- a/crates/quota-router-core/Cargo.toml +++ b/crates/quota-router-core/Cargo.toml @@ -100,7 +100,7 @@ lru = "0.12" unicode-normalization = "0.1.25" # HTTP framework (for litellm-mode) -axum = { version = "0.7", optional = true } +axum = { version = "0.8", optional = true } # Bytes (for streaming bodies) bytes = { version = "1", optional = true }