From b0917b4591e5304863b1a36cc5c64334058a5db1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 09:45:24 +0000 Subject: [PATCH] deps(rust): bump the axum-stack group across 1 directory with 2 updates Updates the requirements on [axum](https://github.com/tokio-rs/axum) and [tower-http](https://github.com/tower-rs/tower-http) 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) Updates `tower-http` to 0.7.0 - [Release notes](https://github.com/tower-rs/tower-http/releases) - [Commits](https://github.com/tower-rs/tower-http/compare/tower-http-0.6.0...tower-http-0.7.0) --- updated-dependencies: - dependency-name: axum dependency-version: 0.8.9 dependency-type: direct:production dependency-group: axum-stack - dependency-name: tower-http dependency-version: 0.7.0 dependency-type: direct:production dependency-group: axum-stack ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- crates/ocm-api/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 919e91f..55396ae 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"] } diff --git a/crates/ocm-api/Cargo.toml b/crates/ocm-api/Cargo.toml index 7730019..5a25d28 100644 --- a/crates/ocm-api/Cargo.toml +++ b/crates/ocm-api/Cargo.toml @@ -11,7 +11,7 @@ ocm-models = { path = "../ocm-models" } axum.workspace = true tokio.workspace = true tower = "0.5" -tower-http = { version = "0.6", features = ["cors", "trace"] } +tower-http = { version = "0.7", features = ["cors", "trace"] } serde.workspace = true serde_json.workspace = true futures = "0.3"