Skip to content

Commit f29c585

Browse files
authored
fix(netwatch): Update web-sys version bound to 0.3.70, the required version (#18)
## Description Updates the web-sys version bound to `0.3.70`, the first web-sys version that this crate successfully builds with. ## Notes & open questions Closes n0-computer/iroh#3252 ## Change checklist - [x] Self-review.
1 parent b8eb4ea commit f29c585

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

deny.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,6 @@ expression = "MIT AND ISC AND OpenSSL"
2020
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
2121

2222
[advisories]
23-
ignore = []
23+
ignore = [
24+
"RUSTSEC-2024-0436", # paste unmaintained
25+
]

netwatch/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ derive_more = { version = "1.0.0", features = ["debug"] }
7070

7171
[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies]
7272
js-sys = "0.3"
73-
web-sys = { version = "0.3", features = ["EventListener", "EventTarget"] }
73+
web-sys = { version = "0.3.70", features = ["EventListener", "EventTarget"] }
7474

7575
[dev-dependencies]
7676
testresult = "0.4.1"

0 commit comments

Comments
 (0)