From a6e7304077611a02c06e77e094157c7ff91137e5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 16:36:23 +0000 Subject: [PATCH] Bump axum-extra from 0.9.4 to 0.10.0 in /bundler Bumps [axum-extra](https://github.com/tokio-rs/axum) from 0.9.4 to 0.10.0. - [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-extra-v0.9.4...axum-extra-v0.10.0) --- updated-dependencies: - dependency-name: axum-extra dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- bundler/Cargo.lock | 66 +++++++++++++++++++++++++++++++++++++++++----- bundler/Cargo.toml | 2 +- 2 files changed, 60 insertions(+), 8 deletions(-) diff --git a/bundler/Cargo.lock b/bundler/Cargo.lock index e46640a..ed51f70 100644 --- a/bundler/Cargo.lock +++ b/bundler/Cargo.lock @@ -147,7 +147,7 @@ dependencies = [ "http-body 0.4.6", "hyper 0.14.28", "itoa", - "matchit", + "matchit 0.7.3", "memchr", "mime", "percent-encoding", @@ -176,7 +176,7 @@ dependencies = [ "hyper 1.1.0", "hyper-util", "itoa", - "matchit", + "matchit 0.7.3", "memchr", "mime", "percent-encoding", @@ -194,6 +194,33 @@ dependencies = [ "tracing", ] +[[package]] +name = "axum" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d6fd624c75e18b3b4c6b9caf42b1afe24437daaee904069137d8bab077be8b8" +dependencies = [ + "axum-core 0.5.0", + "bytes", + "futures-util", + "http 1.0.0", + "http-body 1.0.0", + "http-body-util", + "itoa", + "matchit 0.8.4", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "rustversion", + "serde", + "sync_wrapper 1.0.0", + "tower 0.5.2", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "axum-core" version = "0.3.4" @@ -232,14 +259,34 @@ dependencies = [ "tracing", ] +[[package]] +name = "axum-core" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df1362f362fd16024ae199c1970ce98f9661bf5ef94b9808fee734bc3698b733" +dependencies = [ + "bytes", + "futures-util", + "http 1.0.0", + "http-body 1.0.0", + "http-body-util", + "mime", + "pin-project-lite", + "rustversion", + "sync_wrapper 1.0.0", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "axum-extra" -version = "0.9.4" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73c3220b188aea709cf1b6c5f9b01c3bd936bb08bd2b5184a12b35ac8131b1f9" +checksum = "460fc6f625a1f7705c6cf62d0d070794e94668988b1c38111baeec177c715f7b" dependencies = [ - "axum 0.7.9", - "axum-core 0.4.5", + "axum 0.8.1", + "axum-core 0.5.0", "bytes", "futures-util", "headers", @@ -252,7 +299,6 @@ dependencies = [ "tower 0.5.2", "tower-layer", "tower-service", - "tracing", ] [[package]] @@ -1201,6 +1247,12 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" +[[package]] +name = "matchit" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" + [[package]] name = "md-5" version = "0.10.6" diff --git a/bundler/Cargo.toml b/bundler/Cargo.toml index 91d1d85..573c6db 100644 --- a/bundler/Cargo.toml +++ b/bundler/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] anyhow = { version = "1.0.95" } axum = { version = "0.7.9" } -axum-extra = { version = "0.9.4", features = ["typed-header"] } +axum-extra = { version = "0.10.0", features = ["typed-header"] } clap = { version = "4.5.23", features = ["derive", "env"] } clio = { version = "0.3.5", features = ["clap-parse"] } derive_more = { version = "1.0.0", features = ["deref", "deref_mut", "as_ref"] }