rproj 0.3.0

Guided bootstrap-to-game-dev CLI for Roblox: takes a fresh Windows PC to a working Roblox/Luau setup, then scaffolds projects on it
1
2
3
4
5
6
7
8
9
use notify_rust::Notification;

/// Fires a desktop toast notification. Failures are logged, not propagated -
/// a missing/broken notification backend shouldn't fail the whole command.
pub fn summary(title: &str, body: &str) {
    if let Err(err) = Notification::new().summary(title).body(body).show() {
        eprintln!("(notification failed: {err})");
    }
}