Cupid
Native Rust access to the x86 and x86_64 CPUID instruction.
Overview
```rust
extern crate cupid;
fn main() {
let info = cupid::featureinformation();
if (info.sse42()) { println!("Yay! SSE 4.2 detected!") }
println!("{:?}", info);
}
```
See also
- libcpuid - A C library providing
access the the CPUID instruction.
- cpuid - Rust bindings to the
libcpuid library.
- rust-x86 - Another native crate
that includes CPUID and more.
Contributing
- Fork it ( https://github.com/shepmaster/cupid/fork )
- Create your feature branch (
git checkout -b my-new-feature
)
- Add a failing test.
- Add code to pass the test.
- Commit your changes (
git commit -am 'Add some feature'
)
- Ensure tests pass.
- Push to the branch (
git push origin my-new-feature
)
- Create a new Pull Request