7 unstable releases
0.4.0 | Nov 20, 2020 |
---|---|
0.3.3 | Jan 17, 2018 |
0.2.0 | Jan 13, 2018 |
0.1.0 | Jan 11, 2018 |
#522 in Operating systems
8,030 downloads per month
Used in 6 crates
(4 directly)
10KB
87 lines
Bitness
Rust library for detecting OS bitness independently of the executable's bitness. Windows, GNU/Linux and FreeBSD currently supported.
How to use
let bitness = bitness::os_bitness().unwrap();
match bitness {
Bitness::X86_32 => println!("We're 32-bit!"),
Bitness::X86_64 => println!("We're 64-bit!"),
_ => { }
}
Dependencies
~0.2–7.5MB
~51K SLoC