2026-04-16 00:29:43 +02:00
|
|
|
[package]
|
|
|
|
|
name = "kira-installer"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
2026-05-26 18:26:56 +02:00
|
|
|
# Reference the build script
|
|
|
|
|
# build = "build.rs"
|
|
|
|
|
|
2026-04-16 00:29:43 +02:00
|
|
|
[dependencies]
|
2026-04-28 23:53:50 +02:00
|
|
|
blocking = "1.6"
|
2026-05-26 18:26:56 +02:00
|
|
|
iced = { version = "0.14", default-features = false, features = ["crisp", "linux-theme-detection", "tiny-skia", "x11", "smol", "image"] }
|
2026-04-23 00:44:01 +02:00
|
|
|
iced_moving_picture = "0"
|
2026-05-26 17:56:02 +02:00
|
|
|
log = "0.4"
|
2026-04-16 00:29:43 +02:00
|
|
|
rust-i18n = "3"
|
2026-05-26 17:56:02 +02:00
|
|
|
time-format = "1.2"
|
2026-04-16 00:29:43 +02:00
|
|
|
toml = "1"
|
2026-04-22 14:21:24 +02:00
|
|
|
|
2026-05-20 20:04:45 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
|
rand = "0.10"
|
|
|
|
|
|
2026-05-26 18:26:56 +02:00
|
|
|
[profile.dev]
|
|
|
|
|
opt-level = 2
|
|
|
|
|
codegen-units = 16
|
|
|
|
|
|
2026-04-22 14:21:24 +02:00
|
|
|
[profile.release]
|
2026-05-01 00:29:15 +02:00
|
|
|
#lto = true
|
2026-05-26 17:56:02 +02:00
|
|
|
debug = false
|
2026-05-26 18:26:56 +02:00
|
|
|
incremental = false
|
2026-05-03 18:07:06 +02:00
|
|
|
codegen-units = 16
|
2026-05-26 17:56:02 +02:00
|
|
|
opt-level = 3
|
2026-04-22 14:21:24 +02:00
|
|
|
strip = true
|
2026-05-26 17:56:02 +02:00
|
|
|
|