-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
79 lines (75 loc) · 1.53 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "wio"
version = "0.2.2"
authors = ["Peter Atashian <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Windows IO wrapper"
repository = "https://github.com/retep998/wio-rs"
readme = "README.md"
keywords = ["windows", "ffi", "win32", "com"]
categories = ["api-bindings", "os::windows-apis"]
include = [
"/src/**/*",
"/Cargo.toml",
"/LICENSE-MIT",
"/LICENSE-APACHE",
"/build.rs",
"/README.md",
]
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = [
"aarch64-pc-windows-msvc",
"i686-pc-windows-msvc",
"x86_64-pc-windows-msvc",
]
[dependencies]
log = { version = "0.4", optional = true }
winapi = { version = "0.3", features = [
"consoleapi",
"errhandlingapi",
"fileapi",
"handleapi",
"minwinbase",
"minwindef",
"oleauto",
"processthreadsapi",
"std",
"synchapi",
"unknwnbase",
"winbase",
"wincon",
"winerror",
"winnt",
"wtypes",
] }
[dev-dependencies]
rand = "0.7"
winapi = { version = "0.3", features = [
"combaseapi",
"consoleapi",
"devpkey",
"devpropdef",
"errhandlingapi",
"fileapi",
"handleapi",
"hidclass",
"ioapiset",
"minwinbase",
"minwindef",
"mmdeviceapi",
"processthreadsapi",
"setupapi",
"std",
"synchapi",
"unknwnbase",
"usbioctl",
"usbiodef",
"utilapiset",
"winbase",
"wincon",
"winerror",
"winnt",
] }
[patch.crates-io]
winapi = { git = "https://github.com/retep998/winapi-rs", branch = "0.3" }