-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (21 loc) · 813 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (21 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "clipboard-master"
version = "4.0.0"
authors = ["Douman <douman@gmx.se>"]
keywords = ["Windows", "winapi", "clipboard"]
description = "Simple utility crate to monitor clipboard changes"
homepage = "https://github.com/DoumanAsh/clipboard-master"
repository = "https://github.com/DoumanAsh/clipboard-master"
license = "MIT"
readme = "README.md"
edition = "2018"
[target.'cfg(windows)'.dependencies]
windows-win = "3"
[target.'cfg(all(unix, not(any(target_os="macos", target_os="ios", target_os="android", target_os="emscripten"))))'.dependencies]
x11-clipboard = "0.9"
x11rb = { version = "0.13", features = ["xfixes"] }
[target.'cfg(target_os = "macos")'.dependencies]
objc2 = { version = "0.6" }
objc2-app-kit = { version = "0.3", features = ["NSPasteboard"] }
[features]
cargo-clippy = []