forked from microsoft/windows-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (29 loc) · 858 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
[package]
name = "windows"
version = "0.10.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Rust for Windows"
repository = "https://github.com/microsoft/windows-rs"
documentation = "https://docs.rs/windows"
readme = "README.md"
exclude = [".github", ".windows", "docs", "examples"]
[dependencies]
windows_macros = { path = "crates/macros", version = "0.10.0", optional = true }
gen = { package = "windows_gen", path = "crates/gen", version = "0.10.0", optional = true }
const-sha1 = "0.2"
[dev-dependencies]
gen = { package = "windows_gen", path = "crates/gen" }
[workspace]
members = [
"crates/*",
"examples/*",
"tests/*",
]
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc"]
[features]
default = ["macros"]
macros = ["gen", "windows_macros"]