blob: 559bdb98a9be71710dddb2354be44518e2c66ca0 (
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 = ["parser"]
# Enable panic unwinding in release builds
[profile.release]
panic = "unwind"
# Enable panic unwinding in dev builds
[profile.dev]
panic = "unwind"
[workspace]
|