1
0
Fork 0
mirror of synced 2024-05-03 12:03:22 +12:00
czkawka/Cargo.toml

13 lines
435 B
TOML
Raw Normal View History

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