-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
executable file
·30 lines (26 loc) · 938 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
[package]
name = "tfc"
description = "The Fat Controller. A library for simulating mouse and keyboard events."
keywords = ["keyboard", "mouse", "automation", "control"]
version = "0.7.0"
authors = ["Indiana Kernick <indiana.kernick@gmail.com>"]
edition = "2021"
repository = "https://github.com/indianakernick/The-Fat-Controller"
homepage = "https://github.com/indianakernick/The-Fat-Controller"
readme = "README.md"
categories = ["os::linux-apis", "os::macos-apis", "os::windows-apis"]
license = "MIT OR Apache-2.0"
exclude = [".gitignore", ".idea", "docs", "iOS_client"]
[features]
default = ["check-x11"]
check-x11 = []
x11 = []
ascii-fallback = []
[target.'cfg(target_os = "macos")'.dependencies]
# Both of these are required for UnicodeKeyboardContext::unicode_string
unicode-segmentation = "1.10"
core-graphics = "0.23"
[dependencies]
tokio = { optional = true, version = "1", features = ["time"] }
[profile.release]
lto = true