-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
46 lines (43 loc) · 1.62 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
[package]
name = "winrt"
version = "0.6.0"
authors = ["Patrick Reisert", "Max Strini"]
description = "Automatically generated, (mostly) safe bindings for the Windows Runtime APIs"
repository = "https://github.com/contextfree/winrt-rust"
homepage = "https://github.com/contextfree/winrt-rust"
documentation = "https://docs.rs/winrt/*/x86_64-pc-windows-msvc/winrt/"
readme = "README.md"
keywords = ["winrt", "uwp", "windows", "runtime", "com"]
categories = ["os::windows-apis", "api-bindings", "external-ffi-bindings"]
license = "MIT OR Apache-2.0"
exclude = ["Generator/**"]
edition = "2018"
[dependencies]
winapi = { version = "0.3", features = ["winnt", "combaseapi", "oleauto", "roapi", "roerrorapi", "hstring", "winstring", "winerror", "restrictederrorinfo"] }
[features]
nightly = []
windows-ai = []
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-ai", "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"]
[package.metadata.docs.rs]
features = ["all", "nightly"]
default-target = "x86_64-pc-windows-msvc"