1 | [package] |
2 | name = "windows-implement" |
3 | version = "0.60.0" |
4 | authors = ["Microsoft" ] |
5 | edition = "2021" |
6 | rust-version = "1.74" |
7 | license = "MIT OR Apache-2.0" |
8 | description = "The implement macro for the windows crate" |
9 | repository = "https://github.com/microsoft/windows-rs" |
10 | |
11 | [dependencies] |
12 | proc-macro2 = { workspace = true } |
13 | quote = { workspace = true } |
14 | syn = { workspace = true, features = ["parsing" , "proc-macro" , "printing" , "full" , "clone-impls" ] } |
15 | |
16 | [dev-dependencies] |
17 | windows-core = { path = "../core" } |
18 | |
19 | [lints] |
20 | workspace = true |
21 | |
22 | [package.metadata.docs.rs] |
23 | default-target = "x86_64-pc-windows-msvc" |
24 | targets = [] |
25 | |
26 | [lib] |
27 | proc-macro = true |
28 | |