clipboard-master 3.1.2

Simple utility crate to monitor clipboard changes
Documentation
1
2
3
4
5
6
7
8
#[cfg(windows)]
mod win32;

#[cfg(all(unix, not(any(target_os="macos", target_os="ios", target_os="android", target_os="emscripten"))))]
mod x11;

#[cfg(target_os="macos")]
mod mac;