From 481b3bfd6ecce265a7dd8f521de842de91870369 Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Mon, 24 Feb 2025 01:45:08 +0000 Subject: [PATCH] chore(deps): update all dependencies --- Cargo.lock | 74 ++++++++++++++++++++++++++++++++++++++++++++++-------- Cargo.toml | 2 +- 2 files changed, 64 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c22a15d..6c8d035 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -63,7 +63,7 @@ checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" name = "app" version = "0.1.0" dependencies = [ - "axum", + "axum 0.8.1", "cfg-if", "http", "leptos", @@ -166,9 +166,37 @@ 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", + "http-body", + "http-body-util", + "itoa", + "matchit 0.7.3", + "memchr", + "mime", + "multer", + "percent-encoding", + "pin-project-lite", + "rustversion", + "serde", + "sync_wrapper", + "tower", + "tower-layer", + "tower-service", +] + +[[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", "http-body", @@ -176,10 +204,9 @@ dependencies = [ "hyper", "hyper-util", "itoa", - "matchit", + "matchit 0.8.4", "memchr", "mime", - "multer", "percent-encoding", "pin-project-lite", "rustversion", @@ -213,14 +240,33 @@ dependencies = [ "sync_wrapper", "tower-layer", "tower-service", +] + +[[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", + "http-body", + "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", @@ -1198,7 +1244,7 @@ name = "lebusiness-client" version = "0.1.0" dependencies = [ "app", - "axum", + "axum 0.8.1", "dotenvy", "leptos", "leptos_axum", @@ -1254,7 +1300,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43b613d5784037baee42a11d21bc263adfc1a55e416556a3d5bfe39c7b87fadf" dependencies = [ "any_spawner", - "axum", + "axum 0.7.9", "dashmap", "futures", "hydration_context", @@ -1495,6 +1541,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 = "memchr" version = "2.7.4" @@ -2266,9 +2318,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.136" +version = "1.0.139" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "336a0c23cf42a38d9eaa7cd22c7040d04e1228a19a933890805ffd00a16437d2" +checksum = "44f86c3acccc9c65b153fe1b85a3be07fe5515274ec9f0653b4a0875731c72a6" dependencies = [ "itoa", "memchr", @@ -2324,7 +2376,7 @@ version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f5dd7fcccd3ef2081da086c1f8595b506627abbbbc9f64be0141d2251219570e" dependencies = [ - "axum", + "axum 0.7.9", "bytes", "const_format", "dashmap", diff --git a/Cargo.toml b/Cargo.toml index d65d2d1..2ae4413 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ leptos_axum = { version = "0.7.4" } server_fn = { version = "0.7.4", features = [] } serde = { version = "1", features = ["derive"] } -axum = "0.7.9" +axum = "0.8.0" cfg-if = "1" console_error_panic_hook = "0.1.7" console_log = "1"