#cpu #hardware

bin+lib cpuid

Rust bindings for libpcuid CPU detection and feature extraction library

11 releases

Uses old Rust 2015

0.1.1 Nov 10, 2015
0.1.0 Apr 4, 2015
0.0.9 Mar 27, 2015
0.0.7 Feb 23, 2015
0.0.1 Nov 21, 2014

#9 in #l3

Download history 40/week @ 2023-11-05 43/week @ 2023-11-12 41/week @ 2023-11-19 113/week @ 2023-11-26 77/week @ 2023-12-03 115/week @ 2023-12-10 133/week @ 2023-12-17 50/week @ 2023-12-24 42/week @ 2023-12-31 36/week @ 2024-01-07 59/week @ 2024-01-14 63/week @ 2024-01-21 91/week @ 2024-01-28 40/week @ 2024-02-04 87/week @ 2024-02-11 350/week @ 2024-02-18

571 downloads per month
Used in about-system

MIT license

14KB
277 lines

rust-cpuid

crates.io Build Status Coverage Status

Rust bindings for libpcuid CPU detection and feature extraction library.

Usage

First - download, and build libcpuid as described in the readme. Install it by running make install (you may want to run ldconfig afterwards).

Add to your Cargo.toml:

[dependencies]
cpuid = "*"

Add extern crate cpuid to your crate root and you're good to go! For example:

extern crate cpuid;

fn main () {
    match cpuid::identify() {
        Ok(info) => {
            println!("Found: {} CPU, model: {}", info.vendor, info.codename);
            println!("The full brand string is: {}", info.brand);
            println!("Hardware AES support: {}", if info.has_feature(cpuid::CpuFeature::AES) { "yes" } else { "no" });
        },
        Err(err) => println!("cpuid error: {}", err),
    };
    match cpuid::clock_frequency() {
        Some(frequency) => println!("CPU speed: {} MHz", frequency),
        None => println!("Couldn't get CPU speed."),
    };
}

Resources

Author

  • Zbigniew Siciarz (zbigniew at siciarz dot net)

License

This work is released under the MIT license. A copy of the license is provided in the LICENSE file.

Dependencies

~42KB