1
0
Fork 0
mirror of synced 2024-04-25 16:22:07 +12:00
czkawka/Cargo.toml
Rafał Mikrut de964ce40d
Handle image crashes (#530)
* Don't crash when checking images

* Don't crash when checking images

* Don't crash when checking images

* HERE

* REME

* REE
2021-12-29 13:43:38 +01:00

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"