18 releases

0.6.1 Aug 12, 2023
0.5.9 Aug 11, 2023
0.5.8 Jul 23, 2023
0.5.6 Aug 6, 2022
0.1.1 Mar 12, 2017

#106 in Audio

Download history 10221/week @ 2023-12-13 6759/week @ 2023-12-20 6768/week @ 2023-12-27 6629/week @ 2024-01-03 6678/week @ 2024-01-10 7129/week @ 2024-01-17 6385/week @ 2024-01-24 6777/week @ 2024-01-31 6810/week @ 2024-02-07 7597/week @ 2024-02-14 8058/week @ 2024-02-21 8016/week @ 2024-02-28 8352/week @ 2024-03-06 7310/week @ 2024-03-13 7920/week @ 2024-03-20 6745/week @ 2024-03-27

31,423 downloads per month
Used in 177 crates (5 directly)

MIT license

34KB
528 lines

mac-notification-sys

platform version license contributors

build downloads documentation

A simple wrapper to deliver or schedule macOS Notifications in Rust.

Usage

#Cargo.toml
[dependencies]
mac-notification-sys = "0.6"

Documentation

The documentation can be found here

Example

use mac_notification_sys::*;

fn main() {
    let bundle = get_bundle_identifier_or_default("firefox");
    set_application(&bundle).unwrap();

    send_notification(
        "Danger",
        Some("Will Robinson"),
        "Run away as fast as you can",
        None,
    )
    .unwrap();

    send_notification(
        "NOW",
        None,
        "Without subtitle",
        Some(Notification::new().sound("Blow")),
    )
    .unwrap();
}

TODO

  • Add timeout option so notifications can be auto-closed
  • Allow NSDictionary to hold various types (perhaps with a union?)
  • Switch to UserNotification if possible

Contributors

Thanks goes to these wonderful people:

Any help in form of descriptive and friendly issues or comprehensive pull requests are welcome!

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in mac-notification-sys by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Conventions

The Changelog of this library is generated from its commit log, there any commit message must conform with https://www.conventionalcommits.org/en/v1.0.0/. For simplicity you could make your commits with convco.

Dependencies

~0.9–1.6MB
~27K SLoC