diff --git a/Cargo.lock b/Cargo.lock index aeb0fd605..690bc854f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -714,6 +714,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 = "base64-simd" version = "0.8.0" @@ -1411,7 +1417,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b70617312220ada56e308bf4a2287c942629ce36635204eb18faa74db2470514" dependencies = [ "aws-lc-rs", - "base64", + "base64 0.22.1", "chrono", "hex", "hickory-net", @@ -1517,7 +1523,7 @@ dependencies = [ "async-channel", "aws-lc-rs", "backtrace", - "base64", + "base64 0.23.1", "blocking", "bytes", "chrono", @@ -1628,7 +1634,7 @@ dependencies = [ "aws-config", "aws-credential-types", "aws-sdk-route53", - "base64", + "base64 0.23.1", "dns-update", "ferron-common", "hyper", @@ -1657,7 +1663,7 @@ dependencies = [ "async-compression", "async-process", "async-trait", - "base64", + "base64 0.23.1", "bytes", "cegla", "cegla-cgi", @@ -2326,7 +2332,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", @@ -2497,7 +2503,7 @@ checksum = "9f05ad37c421b962354c358d347d4a6130151df9407978372d3ad7f0c8f71a64" dependencies = [ "async-trait", "aws-lc-rs", - "base64", + "base64 0.22.1", "bytes", "http 1.5.0", "http-body 1.1.0", @@ -3195,7 +3201,7 @@ version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56d658ba1faf63f7b9c492cfbe6e0ec365440a16132d3270c1065f7b33f1b638" dependencies = [ - "base64", + "base64 0.22.1", "const-hex", "opentelemetry", "opentelemetry_sdk", @@ -3324,7 +3330,7 @@ version = "3.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" dependencies = [ - "base64", + "base64 0.22.1", "serde_core", ] @@ -3907,7 +3913,7 @@ version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3" dependencies = [ - "base64", + "base64 0.22.1", "bytes", "futures-core", "h2", @@ -4823,7 +4829,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac2a5518c70fa84342385732db33fb3f44bc4cc748936eb5833d2df34d6445ef" dependencies = [ "async-trait", - "base64", + "base64 0.22.1", "bytes", "http 1.5.0", "http-body 1.1.0", diff --git a/ferron-dns-builtin/Cargo.toml b/ferron-dns-builtin/Cargo.toml index 552d929f5..fd767324c 100644 --- a/ferron-dns-builtin/Cargo.toml +++ b/ferron-dns-builtin/Cargo.toml @@ -25,7 +25,7 @@ tokio = { version = "1.47.0", default-features = false, features = [ ] } async-trait = "0.1.88" anyhow = "1.0.98" -base64 = { version = "0.22.1", optional = true } +base64 = { version = "0.23.1", optional = true } hyper = { version = "1.9.0", optional = true } [features] diff --git a/ferron-modules-builtin/Cargo.toml b/ferron-modules-builtin/Cargo.toml index 35107a77f..2b8f8b018 100644 --- a/ferron-modules-builtin/Cargo.toml +++ b/ferron-modules-builtin/Cargo.toml @@ -21,7 +21,7 @@ hyper-util = { version = "0.1.13", features = ["client"] } http-body-util = "0.1.3" password-auth = { workspace = true } xxhash-rust = { version = "0.8.15", features = ["std", "xxh3"], optional = true } -base64 = "0.22.1" +base64 = "0.23.1" # Async Runtime & Concurrency tokio = { version = "1.45.0", features = [ diff --git a/ferron/Cargo.toml b/ferron/Cargo.toml index 706bac51e..65ee8b091 100644 --- a/ferron/Cargo.toml +++ b/ferron/Cargo.toml @@ -71,7 +71,7 @@ rcgen = { version = "0.14.1", default-features = false, features = [ "aws_lc_rs", "pem", ] } -base64 = "0.22.1" +base64 = "0.23.1" xxhash-rust = { version = "0.8.15", features = ["std", "xxh3"] } rasn = "0.28.8" rasn-ocsp = "0.28.8"