Adding build.rs for config file copy and changing render backend to tiny-skia.
This commit is contained in:
+9
-1
@@ -3,9 +3,12 @@ name = "kira-installer"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
# Reference the build script
|
||||
# build = "build.rs"
|
||||
|
||||
[dependencies]
|
||||
blocking = "1.6"
|
||||
iced = { version = "0.14", default-features = false, features = ["crisp", "linux-theme-detection", "wgpu", "x11", "wayland", "smol", "image"] }
|
||||
iced = { version = "0.14", default-features = false, features = ["crisp", "linux-theme-detection", "tiny-skia", "x11", "smol", "image"] }
|
||||
iced_moving_picture = "0"
|
||||
log = "0.4"
|
||||
rust-i18n = "3"
|
||||
@@ -15,9 +18,14 @@ toml = "1"
|
||||
[dev-dependencies]
|
||||
rand = "0.10"
|
||||
|
||||
[profile.dev]
|
||||
opt-level = 2
|
||||
codegen-units = 16
|
||||
|
||||
[profile.release]
|
||||
#lto = true
|
||||
debug = false
|
||||
incremental = false
|
||||
codegen-units = 16
|
||||
opt-level = 3
|
||||
strip = true
|
||||
|
||||
Reference in New Issue
Block a user