czkawka/Cargo.toml

13 lines
435 B
TOML

[workspace]
members = [
"czkawka_core",
"czkawka_cli",
"czkawka_gui",
]
[profile.release]
# Panic = "abort" will crash entire app when processing invalid image file.
# Since crash happens in external library, this is only way to handle this(I think).
panic = "unwind"
# LTO setting is disabled by default, because release mode is usually needed to develop app and compilation with LTO would take a lot of time
#lto = "fat"