2019-12-18 05:55:32 +01:00
|
|
|
[package]
|
|
|
|
|
name = "window_clipboard"
|
2020-03-12 07:14:21 +01:00
|
|
|
version = "0.1.0"
|
2019-12-18 05:55:32 +01:00
|
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
|
|
|
|
edition = "2018"
|
|
|
|
|
description = "A library to obtain clipboard access from a `raw-window-handle`"
|
|
|
|
|
license = "MIT"
|
2020-03-12 07:12:02 +01:00
|
|
|
repository = "https://github.com/hecrj/window_clipboard"
|
2019-12-18 05:55:32 +01:00
|
|
|
documentation = "https://docs.rs/window_clipboard"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
keywords = ["clipboard", "window", "ui", "gui", "raw-window-handle"]
|
|
|
|
|
categories = ["gui"]
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
raw-window-handle = "0.3"
|
2019-12-19 05:47:36 +01:00
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2020-03-12 07:12:02 +01:00
|
|
|
clipboard-win = "2.1"
|
2019-12-19 05:47:36 +01:00
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2020-03-12 07:14:21 +01:00
|
|
|
clipboard_macos = { version = "0.1.0", path = "./macos" }
|
2019-12-19 05:47:36 +01:00
|
|
|
|
2020-03-12 07:12:02 +01:00
|
|
|
[target.'cfg(all(unix, not(any(target_os="macos", target_os="android", target_os="emscripten", target_os="ios"))))'.dependencies]
|
2020-03-12 07:14:21 +01:00
|
|
|
clipboard_x11 = { version = "0.1.0", path = "./x11" }
|
|
|
|
|
clipboard_wayland = { version = "0.1.0", path = "./wayland" }
|
2019-12-18 05:55:32 +01:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
winit = "=0.20.0-alpha5"
|
2019-12-19 05:47:36 +01:00
|
|
|
|
|
|
|
|
[workspace]
|
|
|
|
|
members = [
|
|
|
|
|
"macos",
|
|
|
|
|
"wayland",
|
|
|
|
|
"x11",
|
|
|
|
|
]
|