From 1b730e75e79e2469d48c044f8411e96203561a87 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 4 Jan 2025 00:02:07 +0000 Subject: [PATCH] chore(deps): update rust crate axum to 0.8.0 --- Cargo.lock | 78 +++++++++++++++++++++++++++++++++++++++++++++++------- Cargo.toml | 2 +- 2 files changed, 70 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 03fdac5ec..8bf578af3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -649,9 +649,43 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f" dependencies = [ "async-trait", - "axum-core", + "axum-core 0.4.5", + "bytes", + "futures-util", + "http 1.2.0", + "http-body 1.0.1", + "http-body-util", + "hyper 1.5.2", + "hyper-util", + "itoa", + "matchit 0.7.3", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "rustversion", + "serde", + "serde_json", + "serde_path_to_error", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "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", "axum-macros", "bytes", + "form_urlencoded", "futures-util", "http 1.2.0", "http-body 1.0.1", @@ -659,7 +693,7 @@ dependencies = [ "hyper 1.5.2", "hyper-util", "itoa", - "matchit", + "matchit 0.8.4", "memchr", "mime", "percent-encoding", @@ -698,11 +732,31 @@ 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.2.0", + "http-body 1.0.1", + "http-body-util", + "mime", + "pin-project-lite", + "rustversion", + "sync_wrapper", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "axum-macros" -version = "0.4.2" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57d123550fa8d071b7255cb0cc04dc302baa6c8c4a79f55701552684d8399bce" +checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c" dependencies = [ "proc-macro2", "quote", @@ -1262,7 +1316,7 @@ name = "charted-core" version = "0.1.0" dependencies = [ "argon2", - "axum", + "axum 0.8.1", "azalia", "charted-testkit", "chrono", @@ -1319,7 +1373,7 @@ dependencies = [ name = "charted-features" version = "0.1.0" dependencies = [ - "axum", + "axum 0.8.1", "azalia", "charted-app", "charted-core", @@ -1396,7 +1450,7 @@ version = "0.1.0" dependencies = [ "argon2", "async-trait", - "axum", + "axum 0.8.1", "axum-server", "azalia", "base64 0.22.1", @@ -1437,7 +1491,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "36414d97dbd4280db97141efa1e08b149f2ce22cb82cd6e78c4d023841e5f459" dependencies = [ - "axum", + "axum 0.7.9", "charted-testkit-macros", "http-body-util", "hyper 1.5.2", @@ -3357,6 +3411,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" @@ -4767,7 +4827,7 @@ version = "0.35.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fcdaf9b1939589476bd57751d12a9653bbfe356610fc476d03d7683189183ab7" dependencies = [ - "axum", + "axum 0.7.9", "http 1.2.0", "pin-project", "sentry-core 0.35.0", diff --git a/Cargo.toml b/Cargo.toml index f8ea5b821..7372c7d1b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ repository = "https://github.com/charted-dev/charted" [workspace.dependencies] argon2 = "0.5.3" -axum = { version = "0.7.7", features = ["macros", "http2"] } +axum = { version = "0.8.0", features = ["macros", "http2"] } charted-core = { version = "0.1.0", path = "./crates/core", default-features = false } charted-database = { version = "0.1.0", path = "./crates/database" } charted-types = { version = "0.1.0", path = "./crates/types", default-features = false }