From 19bd7c8ec8422cd314f8383928f944ad7bfca22e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 16:36:40 +0000 Subject: [PATCH] Bump axum from 0.7.9 to 0.8.1 in /bundler Bumps [axum](https://github.com/tokio-rs/axum) from 0.7.9 to 0.8.1. - [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/commits) --- updated-dependencies: - dependency-name: axum 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 e46640a..bcd15a8 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", @@ -173,10 +173,38 @@ dependencies = [ "http 1.0.0", "http-body 1.0.0", "http-body-util", + "itoa", + "matchit 0.7.3", + "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" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d6fd624c75e18b3b4c6b9caf42b1afe24437daaee904069137d8bab077be8b8" +dependencies = [ + "axum-core 0.5.0", + "bytes", + "form_urlencoded", + "futures-util", + "http 1.0.0", + "http-body 1.0.0", + "http-body-util", "hyper 1.1.0", "hyper-util", "itoa", - "matchit", + "matchit 0.8.4", "memchr", "mime", "percent-encoding", @@ -232,6 +260,26 @@ 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" @@ -329,7 +377,7 @@ name = "bundler" version = "0.1.0" dependencies = [ "anyhow", - "axum 0.7.9", + "axum 0.8.1", "axum-extra", "built", "clap", @@ -1201,6 +1249,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..165c406 100644 --- a/bundler/Cargo.toml +++ b/bundler/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] anyhow = { version = "1.0.95" } -axum = { version = "0.7.9" } +axum = { version = "0.8.1" } axum-extra = { version = "0.9.4", features = ["typed-header"] } clap = { version = "4.5.23", features = ["derive", "env"] } clio = { version = "0.3.5", features = ["clap-parse"] }