forked from microsoft/windows-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (28 loc) · 847 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
[package]
name = "windows"
version = "0.2.1"
authors = ["Microsoft"]
edition = "2018"
license = "MIT"
description = "Windows Runtime language projection"
repository = "https://github.com/microsoft/windows-rs"
documentation = "https://docs.rs/windows"
readme = "README.md"
[dependencies]
windows_macros = { path = "crates/macros", version = "0.2.1" }
windows_gen = { path = "crates/gen", version = "0.2.1" }
windows_winmd = { path = "crates/winmd", version = "0.2.1" }
const-sha1 = "0.2"
[build-dependencies]
windows_macros = { path = "crates/macros", version = "0.2.1" }
[dev-dependencies]
doc-comment = "0.3"
windows_gen = { path = "crates/gen" }
[workspace]
members = [
"crates/*",
"examples/*",
]
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc", "i686-pc-windows-msvc"]