From 6862d5490f3cba8eaff71c4d81c4e7cbc0a47c4e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 18:24:28 +0000 Subject: [PATCH] chore(deps): bump axum from 0.7.7 to 0.7.8 Bumps [axum](https://github.com/tokio-rs/axum) from 0.7.7 to 0.7.8. - [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.7...axum-v0.7.8) --- updated-dependencies: - dependency-name: axum dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- integrations/axum/Cargo.toml | 4 ++-- server_fn/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 22a8cb8b48..44483d9bce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -400,9 +400,9 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" [[package]] name = "axum" -version = "0.7.7" +version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "504e3947307ac8326a5437504c517c4b56716c9d98fac0028c2acc7ca47d70ae" +checksum = "49c41b948da08fb481a94546cd874843adc1142278b0af4badf9b1b78599d68d" dependencies = [ "async-trait", "axum-core", diff --git a/integrations/axum/Cargo.toml b/integrations/axum/Cargo.toml index 4e8bcfa0c2..f453e2ae41 100644 --- a/integrations/axum/Cargo.toml +++ b/integrations/axum/Cargo.toml @@ -11,7 +11,7 @@ edition.workspace = true [dependencies] any_spawner = { workspace = true, features = ["tokio"] } hydration_context = { workspace = true } -axum = { version = "0.7.7", default-features = false, features = [ +axum = { version = "0.7.8", default-features = false, features = [ "matched-path", ] } dashmap = "6" @@ -30,7 +30,7 @@ tower-http = "0.6.1" tracing = { version = "0.1.40", optional = true } [dev-dependencies] -axum = "0.7.7" +axum = "0.7.8" tokio = { version = "1.41", features = ["net", "rt-multi-thread"] } [features] diff --git a/server_fn/Cargo.toml b/server_fn/Cargo.toml index 3aba33aff0..98e56e3b57 100644 --- a/server_fn/Cargo.toml +++ b/server_fn/Cargo.toml @@ -30,7 +30,7 @@ once_cell = "1.20" actix-web = { version = "4.9", optional = true } # axum -axum = { version = "0.7.7", optional = true, default-features = false, features = [ +axum = { version = "0.7.8", optional = true, default-features = false, features = [ "multipart", ] } tower = { version = "0.5.1", optional = true }