12 个版本 (4 个稳定版本)

使用旧的 Rust 2015

1.0.3 2018年1月29日
1.0.2 2017年9月1日
1.0.1 2017年7月11日
0.4.0 2017年4月1日
0.0.3 2015年3月27日

#871 in GUI

Download history • Rust 包仓库 71/week @ 2024-03-15 • Rust 包仓库 101/week @ 2024-03-22 • Rust 包仓库 122/week @ 2024-03-29 • Rust 包仓库 83/week @ 2024-04-05 • Rust 包仓库 84/week @ 2024-04-12 • Rust 包仓库 85/week @ 2024-04-19 • Rust 包仓库 89/week @ 2024-04-26 • Rust 包仓库 91/week @ 2024-05-03 • Rust 包仓库 77/week @ 2024-05-10 • Rust 包仓库 92/week @ 2024-05-17 • Rust 包仓库 78/week @ 2024-05-24 • Rust 包仓库 80/week @ 2024-05-31 • Rust 包仓库 51/week @ 2024-06-07 • Rust 包仓库 72/week @ 2024-06-14 • Rust 包仓库 86/week @ 2024-06-21 • Rust 包仓库 31/week @ 2024-06-28 • Rust 包仓库

255 每月下载量
用于 6 crate

MIT 许可证

25KB
397 代码行

Latest Version License Crate download count

Documentation (crates.io) Documentation (master)

Build Status Join the chat at https://gitter.im/hasufell/rust-libnotify

rust-libnotify

Rust 对 libnotify 的绑定。


lib.rs:

Rustic 对 libnotify 的绑定

extern crate libnotify;

fn main() {
    // Init libnotify
    libnotify::init("myapp").unwrap();
    // Create a new notification (doesn't show it yet)
    let n = libnotify::Notification::new("Summary",
                                         Some("Optional Body"),
                                         None);
    // Show the notification
    n.show().unwrap();
    // Update the existent notification
    n.update("I am another notification", None, None).unwrap();
    // Show the updated notification
    n.show().unwrap();
    // We are done, deinit
    libnotify::uninit();
}

依赖项

~3MB
~72K SLoC