1[package]
2name = "panic_abort"
3version = "0.0.0"
4license = "MIT OR Apache-2.0"
5repository = "https://github.com/rust-lang/rust.git"
6description = "Implementation of Rust panics via process aborts"
7edition = "2024"
8
9[lib]
10test = false
11bench = false
12doc = false
13
14[dependencies]
15core = { path = "../rustc-std-workspace-core", package = "rustc-std-workspace-core" }
16
17[target.'cfg(target_os = "android")'.dependencies]
18libc = { version = "0.2", default-features = false }
19
20[target.'cfg(any(target_os = "android", target_os = "zkvm"))'.dependencies]
21alloc = { path = "../alloc" }
22