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