File: stack.rs

package info (click to toggle)
rust-notify-rust 4.11.6-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 604 kB
  • sloc: sh: 18; makefile: 4
file content (14 lines) | stat: -rw-r--r-- 267 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(all(unix, not(target_os = "macos")))]
fn main() {
    println!("{:?}", notify_rust::dbus_stack());
}

#[cfg(target_os = "macos")]
fn main() {
    println!("mac-notification-sys")
}

#[cfg(target_os = "windows")]
fn main() {
    println!("winrt-notification")
}