#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

#666 in Hardware support

Download history 500/week @ 2023-12-07 713/week @ 2023-12-14 491/week @ 2023-12-21 374/week @ 2023-12-28 890/week @ 2024-01-04 481/week @ 2024-01-11 576/week @ 2024-01-18 404/week @ 2024-01-25 445/week @ 2024-02-01 812/week @ 2024-02-08 1199/week @ 2024-02-15 700/week @ 2024-02-22 589/week @ 2024-02-29 773/week @ 2024-03-07 878/week @ 2024-03-14 749/week @ 2024-03-21

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

~31KB