raw-cpuid 10.7.0

A library to parse the x86 CPUID instruction, written in rust with no external dependencies. The implementation closely resembles the Intel CPUID manual description. The library does only depend on libcore.
Documentation
[[bin]]
name = "cpuid"
path = "src/bin/cpuid.rs"
required-features = ["cli"]
[dependencies.bitflags]
version = "1.2"

[dependencies.clap]
features = ["derive"]
optional = true
version = "3.1.6"

[dependencies.serde]
default-features = false
optional = true
version = "1.0"

[dependencies.serde_derive]
optional = true
version = "1.0"

[dependencies.serde_json]
optional = true
version = "1.0"

[dependencies.termimad]
optional = true
version = "0.20"

[features]
cli = ["display", "clap"]
display = ["std", "termimad", "serde_json", "serialize"]
serialize = ["serde", "serde_derive"]
std = []

[package]
authors = ["Gerd Zellweger <mail@gerdzellweger.com>"]
description = "A library to parse the x86 CPUID instruction, written in rust with no external dependencies. The implementation closely resembles the Intel CPUID manual description. The library does only depend on libcore."
documentation = "https://docs.rs/raw-cpuid/"
edition = "2018"
homepage = "https://github.com/gz/rust-cpuid"
keywords = ["cpuid", "x86", "amd64", "os", "libcore"]
license = "MIT"
name = "raw-cpuid"
readme = "README.md"
repository = "https://github.com/gz/rust-cpuid"
version = "10.7.0"
[target."cfg(unix)".dev-dependencies.core_affinity]
version = "0.5.10"

[target."cfg(unix)".dev-dependencies.libc]
default-features = false
version = "0.2"

[target."cfg(unix)".dev-dependencies.phf]
features = ["macros"]
version = "0.11"

[target."cfg(unix)".dev-dependencies.rustversion]
version = "1.0"