From b66bd6cac8c9011312a50f1e7bbec3b55d91dcf1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Apr 2025 04:33:35 +0000 Subject: [PATCH] chore(deps): bump axum from 0.7.9 to 0.8.3 in /bundler Bumps [axum](https://github.com/tokio-rs/axum) from 0.7.9 to 0.8.3. - [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.9...axum-v0.8.3) --- updated-dependencies: - dependency-name: axum dependency-version: 0.8.3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- bundler/Cargo.lock | 60 +++++++++++++++++++++++++++++++++++++++++++--- bundler/Cargo.toml | 2 +- 2 files changed, 58 insertions(+), 4 deletions(-) diff --git a/bundler/Cargo.lock b/bundler/Cargo.lock index 710cc88..4fb0349 100644 --- a/bundler/Cargo.lock +++ b/bundler/Cargo.lock @@ -142,7 +142,7 @@ dependencies = [ "http-body 0.4.6", "hyper 0.14.32", "itoa", - "matchit", + "matchit 0.7.3", "memchr", "mime", "percent-encoding", @@ -168,10 +168,38 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", + "itoa", + "matchit 0.7.3", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "rustversion", + "serde", + "sync_wrapper 1.0.2", + "tower 0.5.2", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "axum" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de45108900e1f9b9242f7f2e254aa3e2c029c921c258fe9e6b4217eeebd54288" +dependencies = [ + "axum-core 0.5.2", + "bytes", + "form_urlencoded", + "futures-util", + "http 1.2.0", + "http-body 1.0.1", + "http-body-util", "hyper 1.5.2", "hyper-util", "itoa", - "matchit", + "matchit 0.8.4", "memchr", "mime", "percent-encoding", @@ -227,6 +255,26 @@ dependencies = [ "tracing", ] +[[package]] +name = "axum-core" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6" +dependencies = [ + "bytes", + "futures-core", + "http 1.2.0", + "http-body 1.0.1", + "http-body-util", + "mime", + "pin-project-lite", + "rustversion", + "sync_wrapper 1.0.2", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "axum-extra" version = "0.9.6" @@ -325,7 +373,7 @@ name = "bundler" version = "0.1.0" dependencies = [ "anyhow", - "axum 0.7.9", + "axum 0.8.3", "axum-extra", "built", "clap", @@ -1351,6 +1399,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 e3e2f8d..c2a35fc 100644 --- a/bundler/Cargo.toml +++ b/bundler/Cargo.toml @@ -6,7 +6,7 @@ license-file = "../LICENSE" [dependencies] anyhow = { version = "1.0.95" } -axum = { version = "0.7.9" } +axum = { version = "0.8.3" } axum-extra = { version = "0.9.4", features = ["typed-header"] } clap = { version = "4.5.28", features = ["derive", "env"] } clio = { version = "0.3.5", features = ["clap-parse"] }