cpuidrs 0.1.0

A comprehensive Rust library for CPUID instruction decoding, providing a simple API to query CPU features across multiple architectures. Easily integrate hardware detection and instruction set support into your projects.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "cpuidrs"
version = "0.1.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A comprehensive Rust library for CPUID instruction decoding, providing a simple API to query CPU features across multiple architectures. Easily integrate hardware detection and instruction set support into your projects."
homepage = "https://github.com/SturdyFool10/cpuidrs"
readme = "readme.md"
keywords = [
    "cpuid",
    "cpu",
    "instruction-set",
    "hardware",
    "rust",
]
categories = [
    "hardware-support",
    "no-std",
    "os",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/SturdyFool10/cpuidrs"

[features]
baremetal = []
default = ["std"]
std = []

[lib]
name = "cpuidrs"
crate-type = [
    "rlib",
    "cdylib",
]
path = "src/lib.rs"

[[test]]
name = "tests"
path = "tests/tests.rs"

[dependencies.bitflags]
version = "2.9.1"

[dependencies.cc]
version = "1.2.29"

[dependencies.libc]
version = "0.2"

[dependencies.num_cpus]
version = "1.13"

[dependencies.once_cell]
version = "1.21.3"

[dependencies.raw-cpuid]
version = "9.0"

[dependencies.winapi]
version = "0.3"
features = [
    "sysinfoapi",
    "processthreadsapi",
    "winbase",
]

[dev-dependencies]

[build-dependencies.cc]
version = "1.2.29"