diff --git a/Cargo.lock b/Cargo.lock index 66a8e41cef7..6cba07f0022 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -293,6 +293,12 @@ version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" +[[package]] +name = "base64" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b25655df2c3cdd83c5e5b293b88acd880332b2ddadd7c30ac43144fdc0033da9" + [[package]] name = "bitflags" version = "2.13.1" @@ -634,7 +640,7 @@ dependencies = [ name = "boa_wintertc" version = "1.0.0-dev" dependencies = [ - "base64", + "base64 0.23.0", "boa_engine", "boa_gc", "comfy-table", @@ -1778,7 +1784,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", @@ -3198,7 +3204,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-channel", "futures-core", @@ -4383,7 +4389,7 @@ version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0" dependencies = [ - "base64", + "base64 0.22.1", "flate2", "log", "percent-encoding", @@ -4400,7 +4406,7 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c" dependencies = [ - "base64", + "base64 0.22.1", "http", "httparse", "log", diff --git a/Cargo.toml b/Cargo.toml index dae149f2f68..48210004231 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,7 +53,7 @@ small_btree = { version = "~0.1.0", path = "utils/small_btree" } # Shared deps arbitrary = "1" -base64 = "0.22.1" +base64 = "0.23.0" bitflags = "2.13.0" clap = "4.6.1" colored = "3.1.1"