1
2[package]
3name = "windows-targets"
4version = "0.52.4"
5authors = ["Microsoft"]
6edition = "2021"
7rust-version = "1.56"
8license = "MIT OR Apache-2.0"
9description = "Import libs for Windows"
10repository = "https://github.com/microsoft/windows-rs"
11readme = "readme.md"
12
13[lints]
14workspace = true
15
16[target.'cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib)))'.dependencies]
17windows_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]
20windows_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]
23windows_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]
26windows_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]
29windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.52.4" }
30
31[target.x86_64-pc-windows-gnullvm.dependencies]
32windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.52.4" }
33
34[target.aarch64-pc-windows-gnullvm.dependencies]
35windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.52.4" }
36