mac-usernotifications 0.1.0

Thin wrapper around macOS UserNotifications.
Documentation
mod common;

use std::time::Duration;

use mac_usernotifications::*;

fn main() {
    if !common::setup(file!()) {
        return;
    }
    let response = Notification::new()
        .title("Notification Duration timeout")
        .subtitle("this one should stay for 2s")
        .timeout(Duration::from_secs(2))
        .send_blocking()
        .unwrap()
        .response_blocking()
        .unwrap();

    if response.is_timed_out() {
        log::info!("timed out as expected");
    } else {
        log::info!("expected timeout, got: {:?}", response.close_reason);
    }

    block_on_main(async {
        let response = Notification::new()
            .title("Notification Duration timeout")
            .subtitle("this one should stay for 2s")
            .timeout(Duration::from_secs(2))
            .send()
            .await
            .unwrap()
            .response()
            .await
            .unwrap();
        if response.is_timed_out() {
            log::info!("timed out as expected");
        } else {
            log::info!("expected timeout, got: {:?}", response.close_reason);
        }
    });
}