Remove copypasta and maintain our own fork
This commit is contained in:
parent
b55ba14585
commit
23004b960f
16 changed files with 685 additions and 40 deletions
19
Cargo.toml
19
Cargo.toml
|
|
@ -13,7 +13,24 @@ categories = ["gui"]
|
|||
|
||||
[dependencies]
|
||||
raw-window-handle = "0.3"
|
||||
copypasta = "0.6"
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
window_clipboard_windows = { version = "0.1", path = "./windows" }
|
||||
|
||||
[target.'cfg(target_os = "macos")'.dependencies]
|
||||
window_clipboard_macos = { version = "0.1", path = "./macos" }
|
||||
|
||||
[target.'cfg(all(unix, not(any(target_os="macos", target_os="android", target_os="emscripten"))))'.dependencies]
|
||||
window_clipboard_x11 = { version = "0.1", path = "./x11" }
|
||||
window_clipboard_wayland = { version = "0.1", path = "./wayland" }
|
||||
|
||||
[dev-dependencies]
|
||||
winit = "=0.20.0-alpha5"
|
||||
|
||||
[workspace]
|
||||
members = [
|
||||
"macos",
|
||||
"wayland",
|
||||
"windows",
|
||||
"x11",
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue