diff --git a/Cargo.lock b/Cargo.lock index 1c183e67..aadeb04b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1004,9 +1004,9 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" [[package]] name = "axum" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98e529aee37b5c8206bb4bf4c44797127566d72f76952c970bd3d1e85de8f4e2" +checksum = "8a18ed336352031311f4e0b4dd2ff392d4fbb370777c9d18d7fc9d7359f73871" dependencies = [ "axum-core", "bytes", @@ -1037,9 +1037,9 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.5.4" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ac7a6beb1182c7e30253ee75c3e918080bfb83f5a3023bcdf7209d85fd147e6" +checksum = "59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22" dependencies = [ "bytes", "futures-core", @@ -1056,9 +1056,9 @@ dependencies = [ [[package]] name = "axum-extra" -version = "0.10.2" +version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d86d701cd16f401888ebe9c3214dc838c7ef27a405d5726196765a913603b5dd" +checksum = "9963ff19f40c6102c76756ef0a46004c0d58957d87259fc9208ff8441c12ab96" dependencies = [ "axum", "axum-core", diff --git a/Cargo.nix b/Cargo.nix index 45c07b74..0cabdb44 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -4613,9 +4613,9 @@ rec { }; "axum" = rec { crateName = "axum"; - version = "0.8.5"; + version = "0.8.6"; edition = "2021"; - sha256 = "1qplx1fyilfk1fbjr5bn5zbncx8jjx3w9x2bpc384p3vwfp2krcq"; + sha256 = "0w9qyxcp77gwswc9sz3pf2rzpm4jycpxvd70yh8i60sjccrys64a"; dependencies = [ { name = "axum-core"; @@ -4783,9 +4783,9 @@ rec { }; "axum-core" = rec { crateName = "axum-core"; - version = "0.5.4"; + version = "0.5.5"; edition = "2021"; - sha256 = "1rj7s5gxh2bjvyy26c2s7ywbz040j4z5rrry4lq7wb0qn6zadiqa"; + sha256 = "08pa4752h96pai7j5avr2hnq35xh7qgv6vl57y1zhhnikkhnqi2r"; libName = "axum_core"; dependencies = [ { @@ -4843,9 +4843,9 @@ rec { }; "axum-extra" = rec { crateName = "axum-extra"; - version = "0.10.2"; + version = "0.10.3"; edition = "2021"; - sha256 = "1pdm0cv92nknjrhp5m85lhkyzirqr16j3hz9xf41hh3gs4f70vfq"; + sha256 = "15mb28f49y4g434ry9c7gnamh3ac0130mvsncz3h4q8cyhczyqwr"; libName = "axum_extra"; dependencies = [ { diff --git a/Cargo.toml b/Cargo.toml index 39030337..dae174b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -96,7 +96,7 @@ academy_utils_derive.path = "academy_utils_derive" anyhow = { version = "1.0.100", default-features = false, features = ["std"] } argon2 = { version = "0.5.3", default-features = false, features = ["std", "password-hash"] } -axum = { version = "0.8.5", default-features = false, features = [ +axum = { version = "0.8.6", default-features = false, features = [ "http1", "http2", "tokio", @@ -106,7 +106,7 @@ axum = { version = "0.8.5", default-features = false, features = [ "original-uri", "matched-path", ] } -axum-extra = { version = "0.10.2", default-features = false, features = ["typed-header"] } +axum-extra = { version = "0.10.3", default-features = false, features = ["typed-header"] } base32 = { version = "0.5.1", default-features = false } base64 = { version = "0.22.1", default-features = false } chrono = { version = "0.4.42", default-features = false, features = ["serde", "clock"] }