#x86-64 #cpuid #assembly #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

#798 in Hardware support

Download history 651/week @ 2024-02-26 646/week @ 2024-03-04 902/week @ 2024-03-11 930/week @ 2024-03-18 633/week @ 2024-03-25 625/week @ 2024-04-01 712/week @ 2024-04-08 952/week @ 2024-04-15 868/week @ 2024-04-22 943/week @ 2024-04-29 847/week @ 2024-05-06 907/week @ 2024-05-13 703/week @ 2024-05-20 587/week @ 2024-05-27 643/week @ 2024-06-03 1238/week @ 2024-06-10

3,215 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