#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

#780 in Hardware support

Download history 1811/week @ 2024-11-18 2159/week @ 2024-11-25 2060/week @ 2024-12-02 1996/week @ 2024-12-09 3112/week @ 2024-12-16 671/week @ 2024-12-23 357/week @ 2024-12-30 1327/week @ 2025-01-06 1719/week @ 2025-01-13 1549/week @ 2025-01-20 1505/week @ 2025-01-27 1999/week @ 2025-02-03 2694/week @ 2025-02-10 2062/week @ 2025-02-17 2972/week @ 2025-02-24 2866/week @ 2025-03-03

10,854 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