1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//! autopilot is a simple, cross-platform GUI automation library for Rust.
pub mod alert;
pub mod bitmap;
pub mod geometry;
mod internal;
pub mod key;
pub mod mouse;
pub mod screen;

extern crate image;
extern crate libc;
extern crate rand;

#[cfg(test)]
#[macro_use]
extern crate quickcheck;

#[cfg(target_os = "macos")]
extern crate cocoa;
#[cfg(target_os = "macos")]
extern crate core_foundation;
#[cfg(target_os = "macos")]
extern crate core_graphics;
#[cfg(windows)]
extern crate winapi;
#[cfg(target_os = "linux")]
#[macro_use(defer)]
extern crate scopeguard;
#[cfg(windows)]
extern crate scopeguard;
#[cfg(target_os = "linux")]
extern crate x11;