diff options
author | 2024-07-24 10:38:51 +0200 | |
---|---|---|
committer | 2024-07-24 10:39:24 +0200 | |
commit | 884c66ca15eb20a7c591c91e6a68aadd4b416ec2 (patch) | |
tree | 95e1e17b19893f8ecfac637573fb34c4f5e0efde | |
parent | 2eea9b81e49121bdfe4df6f558f1f7f9222d082a (diff) | |
download | iced-884c66ca15eb20a7c591c91e6a68aadd4b416ec2.tar.gz iced-884c66ca15eb20a7c591c91e6a68aadd4b416ec2.tar.bz2 iced-884c66ca15eb20a7c591c91e6a68aadd4b416ec2.zip |
Depend on `wasm-bindgen-futures` only for Wasm
Fixes #2518
-rw-r--r-- | winit/Cargo.toml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/winit/Cargo.toml b/winit/Cargo.toml index 68368aa1..f5a47952 100644 --- a/winit/Cargo.toml +++ b/winit/Cargo.toml @@ -33,7 +33,6 @@ log.workspace = true rustc-hash.workspace = true thiserror.workspace = true tracing.workspace = true -wasm-bindgen-futures.workspace = true window_clipboard.workspace = true winit.workspace = true @@ -46,4 +45,4 @@ winapi.workspace = true [target.'cfg(target_arch = "wasm32")'.dependencies] web-sys.workspace = true web-sys.features = ["Document", "Window"] - +wasm-bindgen-futures.workspace = true |