forked from MrTanoshii/rusty-autoclicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (32 loc) · 969 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
33
34
35
36
37
38
[package]
name = "rusty-autoclicker"
version = "2.3.0"
repository = "https://github.com/MrTanoshii/rusty-autoclicker"
readme = "README.md"
rust-version = "1.65"
license-file = "LICENSE"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.8"
device_query = "1.1"
eframe = "0.21" # Gives us egui, epi and web+native backends
image = "0.24"
rdev = "0.5"
sanitizer = { version = "0.1", features = ["derive"] }
serde = { version = "1.0", features = ["derive"], optional = true }
[build-dependencies]
# https://github.com/mxre/winres/issues/40
winres = { git = "https://github.com/Nilstrieb/winres", branch = "linking-flags" }
[features]
default = []
persistence = [
"eframe/persistence",
"serde",
] # Enable if you want to persist app state on shutdown
[profile.release]
opt-level = 3 # all optimizations
lto = true
codegen-units = 1
strip = true
[package.metadata.winres]