2 unstable releases

Uses old Rust 2015

0.1.0 Jul 14, 2017
0.0.0 Jul 14, 2017

#534 in Operating systems

Download history 3/week @ 2026-01-17 31/week @ 2026-01-24 84/week @ 2026-01-31 29/week @ 2026-02-07 22/week @ 2026-02-14 27/week @ 2026-02-21 23/week @ 2026-02-28 24/week @ 2026-03-07 142/week @ 2026-03-14 2/week @ 2026-03-21 13/week @ 2026-03-28 13/week @ 2026-04-04 19/week @ 2026-04-11 8/week @ 2026-04-18 22/week @ 2026-04-25

51 downloads per month
Used in makara

MIT license

3KB

os

Travis Build Status crates.io MIT licensed

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);
}

No runtime deps