notifica 3.0.2

Small, cross-platform Rust crate for sending system notifications
Documentation
1
2
3
4
5
6
use std::error::Error;

fn main() -> Result<(), Box<dyn Error>> {
    notifica::notify("Hello", "World! 🌍")?;
    Ok(())
}