1[package]
2name = "panic_unwind"
3version = "0.0.0"
4license = "MIT OR Apache-2.0"
5repository = "https://github.com/rust-lang/rust.git"
6description = "Implementation of Rust panics via stack unwinding"
7edition = "2024"
8
9[lib]
10test = false
11bench = false
12doc = false
13
14[dependencies]
15alloc = { path = "../alloc" }
16core = { path = "../rustc-std-workspace-core", package = "rustc-std-workspace-core" }
17unwind = { path = "../unwind" }
18
19[target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies]
20libc = { version = "0.2", default-features = false }
21
22[lints.rust.unexpected_cfgs]
23level = "warn"
24check-cfg = ['cfg(emscripten_wasm_eh)']
25