From c58755ba34548ba65be92e6797636add1cbe6936 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 23:58:01 +0000 Subject: [PATCH] Bump axum from 0.7.9 to 0.8.1 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] --- Cargo.lock | 30 +++++++++--------------------- Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4ef5ede7..10857659 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -89,14 +89,14 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" [[package]] name = "axum" -version = "0.7.9" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f" +checksum = "6d6fd624c75e18b3b4c6b9caf42b1afe24437daaee904069137d8bab077be8b8" dependencies = [ - "async-trait", "axum-core", - "axum-macros 0.4.2", + "axum-macros", "bytes", + "form_urlencoded", "futures-util", "http", "http-body", @@ -124,11 +124,10 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.4.5" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199" +checksum = "df1362f362fd16024ae199c1970ce98f9661bf5ef94b9808fee734bc3698b733" dependencies = [ - "async-trait", "bytes", "futures-util", "http", @@ -143,17 +142,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "axum-macros" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57d123550fa8d071b7255cb0cc04dc302baa6c8c4a79f55701552684d8399bce" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "axum-macros" version = "0.5.0" @@ -996,9 +984,9 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" [[package]] name = "matchit" -version = "0.7.3" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" +checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" [[package]] name = "md-5" @@ -1164,7 +1152,7 @@ dependencies = [ "anyhow", "async-recursion", "axum", - "axum-macros 0.5.0", + "axum-macros", "bit-set", "bytes", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 272b53ea..51b01abe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ csv = "1.1.6" rusqlite = { version = "0.32.1", features = ["bundled", "serde_json"] } tower = { version = "0.5", features = ["util"] } tower-http = { version = "0.6.2", features = ["fs", "normalize-path"] } -axum = { version = "0.7", features = ["macros"] } +axum = { version = "0.8", features = ["macros"] } axum-macros = "0.5.0" http-body-util = "0.1.2" percent-encoding = "2.3.1"