From 798aa7196b1f123843ff7c611cd8bd59fdc28a89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Kr=C3=BCger?= Date: Wed, 2 Apr 2025 14:32:02 +0200 Subject: [PATCH 1/2] fix(netwatch): Update `web-sys` version bound to `0.3.70`, the required version --- netwatch/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netwatch/Cargo.toml b/netwatch/Cargo.toml index 9707ce7..fec8af7 100644 --- a/netwatch/Cargo.toml +++ b/netwatch/Cargo.toml @@ -70,7 +70,7 @@ derive_more = { version = "1.0.0", features = ["debug"] } [target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies] js-sys = "0.3" -web-sys = { version = "0.3", features = ["EventListener", "EventTarget"] } +web-sys = { version = "0.3.70", features = ["EventListener", "EventTarget"] } [dev-dependencies] testresult = "0.4.1" From c0a55ed90c8adb18a1f8cafe1df44337034b377e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Kr=C3=BCger?= Date: Wed, 2 Apr 2025 14:34:43 +0200 Subject: [PATCH 2/2] Update `deny.toml`, ignore paste being unmaintained --- deny.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deny.toml b/deny.toml index 843225d..a64a9db 100644 --- a/deny.toml +++ b/deny.toml @@ -20,4 +20,6 @@ expression = "MIT AND ISC AND OpenSSL" license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }] [advisories] -ignore = [] +ignore = [ + "RUSTSEC-2024-0436", # paste unmaintained +]