-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
49 lines (46 loc) · 1.83 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
[package]
name = "winrt"
version = "0.5.1"
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/**"]
[dependencies]
winapi = { version = "0.3", features = ["winnt", "combaseapi", "oleauto", "roapi", "roerrorapi", "hstring", "winstring", "winerror", "restrictederrorinfo"] }
uuid = { version = "0.7", features = ["v5"] }
[features]
nightly = []
lang-compat = []
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]
# This could include "all", but that would result in a HUGE documentation, stressing docs.rs.
# I don't want to be rude. Maybe it's more efficient after the rustdoc rewrite.
features = ["nightly"]
default-target = "x86_64-pc-windows-msvc"