1 | [package] |
2 | name = "windows-core" |
3 | version = "0.61.0" |
4 | authors = ["Microsoft" ] |
5 | edition = "2021" |
6 | rust-version = "1.74" |
7 | license = "MIT OR Apache-2.0" |
8 | description = "Core type support for COM and Windows" |
9 | repository = "https://github.com/microsoft/windows-rs" |
10 | readme = "readme.md" |
11 | categories = ["os::windows-apis" ] |
12 | |
13 | [dependencies] |
14 | windows-implement = { workspace = true } |
15 | windows-interface = { workspace = true } |
16 | windows-link = { workspace = true } |
17 | windows-result = { workspace = true } |
18 | windows-strings = { workspace = true } |
19 | |
20 | [features] |
21 | default = ["std" ] |
22 | std = ["windows-result/std" , "windows-strings/std" ] |
23 | |
24 | [lints] |
25 | workspace = true |
26 | |
27 | [package.metadata.docs.rs] |
28 | default-target = "x86_64-pc-windows-msvc" |
29 | targets = [] |
30 | |