2 unstable releases
Uses old Rust 2015
0.1.0 | Jul 14, 2017 |
---|---|
0.0.0 | Jul 14, 2017 |
#571 in Operating systems
257 downloads per month
3KB
os
A rust library for various os utilities.
Not for production use yet!
The module uses the following command line tools and assumes they are installed on your system.
- uname
Example
Get the kernel name and os name.
extern crate os;
fn main() {
let os_info = os::get_info();
println!("{:?}", os_info);
}