-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
41 lines (32 loc) · 904 Bytes
/
Cargo.toml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "clipboard-win"
version = "5.4.0"
authors = ["Douman <[email protected]>"]
description = "Provides simple way to interact with Windows clipboard."
license = "BSL-1.0"
keywords = ["Windows", "winapi", "clipboard"]
categories = ["os::windows-apis"]
repository = "https://github.com/DoumanAsh/clipboard-win"
documentation = "https://docs.rs/crate/clipboard-win"
readme = "README.md"
edition = "2018"
include = [
"**/*.rs",
"Cargo.toml",
"README.md"
]
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
features = ["monitor"]
[target.'cfg(windows)'.dependencies]
error-code = "3"
[target.'cfg(windows)'.dependencies.windows-win]
version = "3"
optional = true
[features]
std = ["error-code/std"]
# Enables clipboard monitoring code
monitor = ["windows-win"]
[[test]]
name = "monitor"
required-features = ["monitor"]