Rust library for detecting OS bitness independently of the executable's bitness. Windows, GNU/Linux and FreeBSD currently supported.
```rust let bitness = bitness::os_bitness().unwrap();
match bitness { Bitness::X8632 => println!("We're 32-bit!"), Bitness::X8664 => println!("We're 64-bit!"), _ => { } } ```