-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
40 lines (38 loc) · 1.25 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
[package]
name = "winrt"
version = "0.1.0"
authors = ["Patrick Reisert", "Max Strini"]
description = "Automatically generated, (mostly) safe bindings for the Windows Runtime APIs"
repository = "https://github.com/contextfree/winrt-rust"
readme = "README.md"
keywords = ["winrt", "uwp", "windows", "runtime"]
license = "MIT OR Apache-2.0"
exclude = ["Generator/**"]
[dependencies]
winapi = "0.2.8"
runtimeobject-sys = "0.2.0"
ole32-sys = "0.2.0"
oleaut32-sys = "0.2.0"
[features]
nightly = []
"windows.applicationmodel" = []
"windows.data" = []
"windows.devices" = []
"windows.gaming" = []
"windows.globalization" = []
"windows.graphics" = []
"windows.management" = []
"windows.media" = []
"windows.networking" = []
"windows.perception" = []
"windows.security" = []
"windows.services" = []
"windows.storage" = []
"windows.system" = []
"windows.ui" = []
"windows.ui.xaml" = ["windows.ui"]
"windows.web" = []
"all" = ["windows.applicationmodel", "windows.data", "windows.devices", "windows.gaming",
"windows.globalization", "windows.graphics", "windows.management", "windows.media",
"windows.networking", "windows.perception", "windows.security", "windows.services",
"windows.storage", "windows.system", "windows.ui", "windows.ui.xaml", "windows.web"]