blob: 463a288173b052e5e1c55ff75d81beb9e7d13e7b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[package]
name = "example-panic-unwind"
version = "0.1.0"
edition = "2024"
[dependencies.mingling]
path = "../../mingling"
features = ["picker"]
# Enable panic unwinding in release builds
[profile.release]
panic = "unwind"
# Enable panic unwinding in dev builds
[profile.dev]
panic = "unwind"
[workspace]
|