monio 0.1.1

Pure Rust cross-platform input monitoring library with proper drag detection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! macOS platform implementation using CGEventTap.

mod display;
mod keycodes;
mod listen;
mod simulate;

pub use display::{display_at_point, displays, primary_display, system_settings};
pub use listen::{run_grab_hook, run_hook, stop_hook};
pub use simulate::{
    key_press, key_release, key_tap, mouse_click, mouse_move, mouse_position, mouse_press,
    mouse_release, simulate,
};