| 1 | [package] |
| 2 | name = "panic_abort" |
| 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 process aborts" |
| 7 | edition = "2024" |
| 8 | |
| 9 | [lib] |
| 10 | test = false |
| 11 | bench = false |
| 12 | doc = false |
| 13 | |
| 14 | [dependencies] |
| 15 | core = { path = "../core" } |
| 16 | compiler_builtins = { path = "../compiler-builtins/compiler-builtins" } |
| 17 | |
| 18 | [target.'cfg(target_os = "android")'.dependencies] |
| 19 | libc = { version = "0.2" , default-features = false } |
| 20 | |
| 21 | [target.'cfg(any(target_os = "android", target_os = "zkvm"))'.dependencies] |
| 22 | alloc = { path = "../alloc" } |
| 23 | |