Crates.io | os |
lib.rs | os |
version | 0.1.0 |
source | src |
created_at | 2017-07-14 02:43:23.764125 |
updated_at | 2017-07-14 23:40:28.067724 |
description | Library for various os utilities |
homepage | https://github.com/camp4climber/os |
repository | https://github.com/camp4climber/os |
max_upload_size | |
id | 23299 |
size | 3,700 |
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.
Get the kernel name and os name.
extern crate os;
fn main() {
let os_info = os::get_info();
println!("{:?}", os_info);
}