2
0
mirror of https://github.com/qarmin/czkawka synced 2024-11-18 03:25:36 +00:00
czkawka/Cargo.toml

13 lines
435 B
TOML
Raw Normal View History

[workspace]
members = [
"czkawka_core",
"czkawka_cli",
"czkawka_gui",
2020-12-02 09:25:27 +00:00
]
[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"