heim-host 0.0.11

Cross-platform host information
Documentation
use heim_common::prelude::*;
use heim_host as host;

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

    dbg!(boot_time);

    Ok(())
}