diff --git a/Cargo.lock b/Cargo.lock index e881bc4..7443edd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -195,9 +195,6 @@ dependencies = [ "anyhow", "duplicate", "extend", - "js-sys", - "wasm-bindgen", - "web-sys", ] [[package]] diff --git a/dynatos-html/Cargo.toml b/dynatos-html/Cargo.toml index 369c574..df0ad1e 100644 --- a/dynatos-html/Cargo.toml +++ b/dynatos-html/Cargo.toml @@ -16,9 +16,16 @@ js-sys = { workspace = true } tracing = { workspace = true } wasm-bindgen = { workspace = true } web-sys = { workspace = true, features = [ - "HtmlInputElement", - "Text", "Comment", + "Document", + "Element", + "HtmlElement", + "HtmlInputElement", + "InputEvent", + "PointerEvent", + "PopStateEvent", + "Text", + "Window", ] } [lints] diff --git a/dynatos-util/Cargo.toml b/dynatos-util/Cargo.toml index ee7f1de..6969156 100644 --- a/dynatos-util/Cargo.toml +++ b/dynatos-util/Cargo.toml @@ -8,17 +8,6 @@ edition = "2021" anyhow = { workspace = true } duplicate = { workspace = true } extend = { workspace = true } -js-sys = { workspace = true } -wasm-bindgen = { workspace = true } -web-sys = { workspace = true, features = [ - "Document", - "Element", - "HtmlElement", - "PointerEvent", - "InputEvent", - "PopStateEvent", - "Window", -] } [lints] workspace = true diff --git a/examples/Cargo.lock b/examples/Cargo.lock index 697f859..ca2f424 100644 --- a/examples/Cargo.lock +++ b/examples/Cargo.lock @@ -185,9 +185,6 @@ dependencies = [ "anyhow", "duplicate", "extend", - "js-sys", - "wasm-bindgen", - "web-sys", ] [[package]]