diff --git a/Cargo.lock b/Cargo.lock index 80fb77c..29ab37a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -245,6 +245,12 @@ version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" +[[package]] +name = "base64" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5" + [[package]] name = "bincode" version = "1.3.3" @@ -1220,7 +1226,7 @@ version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" dependencies = [ - "base64", + "base64 0.22.1", "bytes", "futures-channel", "futures-util", @@ -1881,7 +1887,7 @@ dependencies = [ "arc-swap", "async-trait", "axum", - "base64", + "base64 0.23.1", "chrono", "feed-rs", "governor", @@ -2610,7 +2616,7 @@ version = "0.12.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" dependencies = [ - "base64", + "base64 0.22.1", "bytes", "encoding_rs", "futures-core", @@ -2791,7 +2797,7 @@ dependencies = [ "anyhow", "arc-swap", "axum", - "base64", + "base64 0.23.1", "chrono", "clap", "crc32fast", @@ -3463,7 +3469,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac2a5518c70fa84342385732db33fb3f44bc4cc748936eb5833d2df34d6445ef" dependencies = [ "async-trait", - "base64", + "base64 0.22.1", "bytes", "http", "http-body", @@ -3765,7 +3771,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d047458f1b5b65237c2f6dc6db136945667f40a7668627b3490b9513a3d43a55" dependencies = [ "axum", - "base64", + "base64 0.22.1", "mime_guess", "regex", "rust-embed", diff --git a/Cargo.toml b/Cargo.toml index 7b5eb79..8937048 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -70,7 +70,7 @@ parking_lot = "0.12" arc-swap = "1" rand = "0.9" hex = "0.4" -base64 = "0.22" +base64 = "0.23" governor = "0.10" webpki-roots = "0.26" rustls-pki-types = "1" diff --git a/crates/nzb-web/Cargo.toml b/crates/nzb-web/Cargo.toml index c305033..b66c224 100644 --- a/crates/nzb-web/Cargo.toml +++ b/crates/nzb-web/Cargo.toml @@ -33,7 +33,7 @@ thiserror = "2" parking_lot = "0.12" rand = "0.9" hex = "0.4" -base64 = "0.22" +base64 = "0.23" sha2 = "0.10" governor = "0.10" arc-swap = "1"