forked from autopilot-rs/autopilot-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (34 loc) · 1.02 KB
/
Cargo.toml
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
33
34
35
36
37
38
39
40
[package]
name = "autopilot"
version = "0.4.0"
authors = ["Michael Sanders <[email protected]>"]
description = "A simple, cross-platform GUI automation library for Rust."
homepage = "https://www.autopy.org"
readme = "README.md"
repository = "https://github.com/autopilot-rs/autopilot-rs"
license = "MIT OR Apache-2.0"
keywords = ["cross-platform", "gui" ,"automation", "input", "simulation"]
categories = [
"api-bindings",
"gui",
"os::macos-apis",
"os::unix-apis",
"os::windows-apis"
]
[dependencies]
image = "0.22.4"
libc = "0.2.66"
rand = "0.7.2"
scopeguard = "1.0.0"
[dev-dependencies]
quickcheck = "0.9.2"
[build-dependencies]
pkg-config = "0.3.17"
[target.'cfg(target_os = "macos")'.dependencies]
core-foundation = "0.7.0"
core-graphics = { version = "0.19.0", features = ["highsierra"] }
cocoa = "0.20.0"
[target.'cfg(target_os = "linux")'.dependencies]
x11 = "2.18.1"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.4", features = ["libloaderapi", "minwindef", "winbase", "winuser"] }