#x86-64 #assembly #cpuid #system

bin+lib cupid

Native access to the x86 and x86_64 CPUID instruction

8 releases (5 breaking)

Uses old Rust 2015

0.6.1 Oct 7, 2018
0.6.0 Jun 4, 2018
0.5.0 Nov 21, 2017
0.4.0 Nov 9, 2017
0.1.0 Jul 12, 2015

#501 in Hardware support

Download history 1215/week @ 2024-06-19 1801/week @ 2024-06-26 2012/week @ 2024-07-03 1111/week @ 2024-07-10 1075/week @ 2024-07-17 1942/week @ 2024-07-24 1491/week @ 2024-07-31 987/week @ 2024-08-07 1354/week @ 2024-08-14 1156/week @ 2024-08-21 1501/week @ 2024-08-28 1677/week @ 2024-09-04 1325/week @ 2024-09-11 1750/week @ 2024-09-18 1674/week @ 2024-09-25 993/week @ 2024-10-02

6,111 downloads per month
Used in 5 crates (3 directly)

MIT license

41KB
1K SLoC

Cupid

Native Rust access to the x86 and x86_64 CPUID instruction.

Linux Build Status Windows Build Status

Documentation

Overview

extern crate cupid;

fn main() {
    let information = cupid::master();
    println!("{:#?}", information);
    if let Some(information) = information {
        if information.sse4_2() {
             println!("SSE 4.2 Available");
        }
    }
}

See also

  • libcpuid - A C library providing access to the CPUID instruction.
  • cpuid - Rust bindings to the libcpuid library.
  • rust-x86 - Another native crate that includes CPUID and more.

Contributing

  1. Fork it ( https://github.com/shepmaster/cupid/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Add a failing test.
  4. Add code to pass the test.
  5. Commit your changes (git commit -am 'Add some feature')
  6. Ensure tests pass.
  7. Push to the branch (git push origin my-new-feature)
  8. Create a new Pull Request

No runtime deps

~32KB