1[package]
2name = "cpufeatures"
3version = "0.2.12"
4description = """
5Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets,
6with no_std support and support for mobile targets including Android and iOS
7"""
8authors = ["RustCrypto Developers"]
9license = "MIT OR Apache-2.0"
10documentation = "https://docs.rs/cpufeatures"
11repository = "https://github.com/RustCrypto/utils"
12keywords = ["cpuid", "target-feature"]
13categories = ["hardware-support", "no-std"]
14edition = "2018"
15readme = "README.md"
16
17[target.'cfg(all(target_arch = "aarch64", target_vendor = "apple"))'.dependencies]
18libc = "0.2.149"
19
20[target.'cfg(all(target_arch = "aarch64", target_os = "linux"))'.dependencies]
21libc = "0.2.149"
22
23[target.'cfg(all(target_arch = "loongarch64", target_os = "linux"))'.dependencies]
24libc = "0.2.149"
25
26[target.aarch64-linux-android.dependencies]
27libc = "0.2.149"
28