aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock26
-rw-r--r--deny.toml2
2 files changed, 18 insertions, 10 deletions
diff --git a/Cargo.lock b/Cargo.lock
index ee9a3197c22..327f22bca24 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -412,6 +412,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
[[package]]
+name = "base64"
+version = "0.22.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
+
+[[package]]
name = "bincode"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1079,11 +1085,11 @@ dependencies = [
[[package]]
name = "content-security-policy"
-version = "0.5.2"
+version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bf7225464dae1993d0045c023d0975f44d63337f35f85faddb998ff9abdfcd0f"
+checksum = "f0db809cdd8bf9d875323a8bbb5951d582042a3d279ee861be9cc8f7be24b46f"
dependencies = [
- "base64",
+ "base64 0.22.1",
"bitflags 2.6.0",
"once_cell",
"percent-encoding",
@@ -2937,7 +2943,7 @@ version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270"
dependencies = [
- "base64",
+ "base64 0.21.7",
"bytes",
"headers-core",
"http",
@@ -4597,7 +4603,7 @@ dependencies = [
"async-recursion",
"async-tungstenite",
"base",
- "base64",
+ "base64 0.21.7",
"bytes",
"chrono",
"content-security-policy",
@@ -5849,7 +5855,7 @@ version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94"
dependencies = [
- "base64",
+ "base64 0.21.7",
"bitflags 2.6.0",
"serde",
"serde_derive",
@@ -5913,7 +5919,7 @@ version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
dependencies = [
- "base64",
+ "base64 0.21.7",
]
[[package]]
@@ -5973,7 +5979,7 @@ dependencies = [
"background_hang_monitor_api",
"backtrace",
"base",
- "base64",
+ "base64 0.21.7",
"bincode",
"bitflags 2.6.0",
"bluetooth_traits",
@@ -8133,7 +8139,7 @@ version = "0.49.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc8773336cf1ad6ffadae7d73fea436e5c4d6345a467292902876cb0f7b72107"
dependencies = [
- "base64",
+ "base64 0.21.7",
"bytes",
"cookie 0.16.2",
"http",
@@ -8154,7 +8160,7 @@ name = "webdriver_server"
version = "0.0.1"
dependencies = [
"base",
- "base64",
+ "base64 0.21.7",
"compositing_traits",
"cookie 0.18.1",
"crossbeam-channel",
diff --git a/deny.toml b/deny.toml
index 10b9b2365cc..469cea69196 100644
--- a/deny.toml
+++ b/deny.toml
@@ -144,6 +144,8 @@ skip = [
# tracing-subscriber -> matchers -> regex-automata 0.1.0 -> regex-syntax 0.6.29
"regex-syntax",
+ # rust-content-security-policy uses newest base64.
+ "base64",
# gilrs is on 0.10.0, but Servo is still on 0.9.4
"core-foundation",