heim-host 0.0.3

Cross-platform host information
Documentation
#![allow(stable_features)]
#![feature(async_await, futures_api)]

use heim_common::prelude::*;
use heim_host as host;

#[runtime::main]
async fn main() -> Result<()> {
    let uptime = host::uptime().await?;

    dbg!(uptime);

    Ok(())
}