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 = "2021"
8
9[lib]
10test = false
11bench = false
12doc = false
13
14[dependencies]
15alloc = { path = "../alloc" }
16cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] }
17core = { path = "../core" }
18compiler_builtins = "0.1.0"
19
20[target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies]
21libc = { version = "0.2", default-features = false }
22