aboutsummaryrefslogtreecommitdiff
path: root/examples/example-panic-unwind/Cargo.toml
blob: 5d1c242dd72cab0fbd2ec6c6453948ceefe42f54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[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"