1 | |
2 | [package] |
3 | name = "windows-targets" |
4 | version = "0.52.4" |
5 | authors = ["Microsoft" ] |
6 | edition = "2021" |
7 | rust-version = "1.56" |
8 | license = "MIT OR Apache-2.0" |
9 | description = "Import libs for Windows" |
10 | repository = "https://github.com/microsoft/windows-rs" |
11 | readme = "readme.md" |
12 | |
13 | [lints] |
14 | workspace = true |
15 | |
16 | [target.'cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib)))'.dependencies] |
17 | windows_i686_msvc = { path = "../../targets/i686_msvc" , version = "0.52.4" } |
18 | |
19 | [target.'cfg(all(target_arch = "x86_64", target_env = "msvc", not(windows_raw_dylib)))'.dependencies] |
20 | windows_x86_64_msvc = { path = "../../targets/x86_64_msvc" , version = "0.52.4" } |
21 | |
22 | [target.'cfg(all(target_arch = "aarch64", target_env = "msvc", not(windows_raw_dylib)))'.dependencies] |
23 | windows_aarch64_msvc = { path = "../../targets/aarch64_msvc" , version = "0.52.4" } |
24 | |
25 | [target.'cfg(all(target_arch = "x86", target_env = "gnu", not(windows_raw_dylib)))'.dependencies] |
26 | windows_i686_gnu = { path = "../../targets/i686_gnu" , version = "0.52.4" } |
27 | |
28 | [target.'cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib)))'.dependencies] |
29 | windows_x86_64_gnu = { path = "../../targets/x86_64_gnu" , version = "0.52.4" } |
30 | |
31 | [target.x86_64-pc-windows-gnullvm.dependencies] |
32 | windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm" , version = "0.52.4" } |
33 | |
34 | [target.aarch64-pc-windows-gnullvm.dependencies] |
35 | windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm" , version = "0.52.4" } |
36 | |