Multi-platform uptime library for Rust CI Status MIT licensed crates.io

Example

```rust extern crate uptime_lib;

fn main() { match uptimelib::get() { Ok(uptime) => { println!("uptime: {} seconds", uptime.assecs_f64()); } Err(err) => { eprintln!("uptime: {}", err); std::process::exit(1); } } } ```

Author

itchyny (https://github.com/itchyny)

License

This software is released under the MIT License, see LICENSE.