diff options
author | 2025-01-28 21:41:37 +0900 | |
---|---|---|
committer | 2025-01-28 21:41:37 +0900 | |
commit | bf3b40839b369b04af0d446f811586e1da943a8b (patch) | |
tree | 5183894cd11851b734d15277232a3987ccdfc4d4 | |
parent | ce4ee9323d31d7f346b1d775945f7629f3c5ab64 (diff) | |
download | iced-bf3b40839b369b04af0d446f811586e1da943a8b.tar.gz iced-bf3b40839b369b04af0d446f811586e1da943a8b.tar.bz2 iced-bf3b40839b369b04af0d446f811586e1da943a8b.zip |
Remove unused `winapi` crate from dependencies
-rw-r--r-- | Cargo.lock | 1 | ||||
-rw-r--r-- | Cargo.toml | 1 | ||||
-rw-r--r-- | winit/Cargo.toml | 3 |
3 files changed, 0 insertions, 5 deletions
@@ -2652,7 +2652,6 @@ dependencies = [ "tracing", "wasm-bindgen-futures", "web-sys", - "winapi", "window_clipboard", "winit", ] @@ -188,7 +188,6 @@ wasm-timer = "0.2" web-sys = "0.3.69" web-time = "1.1" wgpu = "23.0" -winapi = "0.3" window_clipboard = "0.4.1" winit = { git = "https://github.com/iced-rs/winit.git", rev = "11414b6aa45699f038114e61b4ddf5102b2d3b4b" } diff --git a/winit/Cargo.toml b/winit/Cargo.toml index 10a6369b..f8f8e26e 100644 --- a/winit/Cargo.toml +++ b/winit/Cargo.toml @@ -39,9 +39,6 @@ winit.workspace = true sysinfo.workspace = true sysinfo.optional = true -[target.'cfg(target_os = "windows")'.dependencies] -winapi.workspace = true - [target.'cfg(target_arch = "wasm32")'.dependencies] web-sys.workspace = true web-sys.features = ["Document", "Window", "HtmlCanvasElement"] |