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