Remove clipboard_dummy crate

This commit is contained in:
Héctor Ramón Jiménez 2022-01-27 16:41:00 +07:00
parent 0f74d59198
commit 9a5cac87bf
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
5 changed files with 13 additions and 51 deletions

View file

@ -13,6 +13,7 @@ categories = ["gui"]
[dependencies]
raw-window-handle = "0.3"
thiserror = "1.0"
[target.'cfg(windows)'.dependencies]
clipboard-win = { version = "4.0", features = ["std"] }
@ -24,9 +25,6 @@ clipboard_macos = { version = "0.1", path = "./macos" }
clipboard_x11 = { version = "0.3", path = "./x11" }
clipboard_wayland = { version = "0.2", path = "./wayland" }
[target.'cfg(not(any(all(unix, not(any(target_os = "macos", target_os = "ios", target_os = "android", target_os = "emscripten"))), target_os = "windows", target_os = "macos", target_os = "ios", target_os = "android")))'.dependencies]
clipboard_dummy = { version = "0.3", path = "./dummy" }
[dev-dependencies]
rand = "0.8"
winit = "0.23"