-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
32 lines (26 loc) · 943 Bytes
/
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
[package]
name = "mouse-rs"
version = "0.4.2"
authors = ["AltF2 <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
readme = "README.md"
homepage = "https://docs.rs/mouse-rs/*/mouse_rs/"
description = "Library to control your mouse via rust"
repository = "https://github.com/AltF02/mouse-rs"
keywords = ["mouse", "input", "winapi"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[target.'cfg(target_os = "macos")'.dependencies.core-graphics]
version = "0.22.1"
features = ["highsierra"]
[target.'cfg(target_os = "windows")'.dependencies]
libloading = "0.6.3"
[target.'cfg(target_os = "windows")'.dependencies.winapi]
version = "0.3.9"
features = ["windef"]
[target.'cfg(target_os = "linux")'.dependencies]
libc = "0.2.77"
x11 = "2.18.2"
time = "0.2.21"
[package.metadata.docs.rs]
targets = ["x86_64-pc-windows-msvc", "i686-pc-windows-msvc"]