34 lines
551 B
TOML
34 lines
551 B
TOML
[package]
|
|
name = "jiggler"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
slint = "1.6.0"
|
|
|
|
[dependencies.windows]
|
|
version = "0.56.0"
|
|
features = [
|
|
"Data_Xml_Dom",
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_System_Threading",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
|
]
|
|
|
|
[build]
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
slint-build = "1.6.0"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = "fat"
|
|
debug = false
|
|
codegen-units = 1
|
|
panic = 'abort'
|
|
strip = true
|
|
debug-assertions = false
|
|
overflow-checks = false |