raw-cpuid 6.1.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"

[[test]]
harness = false
name = "no_std_build"
path = "tests/no_std_build.rs"
[build-dependencies.cc]
version = "1"

[build-dependencies.rustc_version]
version = "0.2"
[dependencies.bitflags]
version = "1.0"

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

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

[features]
nightly = []
serialize = ["serde", "serde_derive"]
use_arch = []

[package]
authors = ["Gerd Zellweger <mail@gerdzellweger.com>"]
build = "build.rs"
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/"
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 = "6.1.0"
[target."cfg(unix)".dev-dependencies.libc]
default-features = false
version = "0.2"