Start with an initial draft
This commit is contained in:
commit
6f71824857
7 changed files with 160 additions and 0 deletions
22
Cargo.toml
Normal file
22
Cargo.toml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
[package]
|
||||
name = "window_clipboard"
|
||||
version = "0.1.0-alpha"
|
||||
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"
|
||||
repository = "https://github.com/hecrj/iced"
|
||||
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"
|
||||
clipboard = "0.5"
|
||||
|
||||
[target.'cfg(all(unix, not(any(target_os="macos", target_os="android", target_os="emscripten"))))'.dependencies]
|
||||
smithay-clipboard = "0.3"
|
||||
|
||||
[dev-dependencies]
|
||||
winit = "=0.20.0-alpha5"
|
||||
Loading…
Add table
Add a link
Reference in a new issue