rs_peekaboo 0.2.4

Rust-native cross-platform computer-use CLI and library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod process;

#[cfg(not(any(target_os = "macos", target_os = "windows")))]
pub mod linux;
#[cfg(target_os = "macos")]
pub mod macos;
#[cfg(target_os = "windows")]
pub mod windows;

#[cfg(not(any(target_os = "macos", target_os = "windows")))]
pub use linux as backend;
#[cfg(target_os = "macos")]
pub use macos as backend;
#[cfg(target_os = "windows")]
pub use windows as backend;