]> git.lizzy.rs Git - rust.git/blob - library/panic_abort/Cargo.toml
Merge commit '4f3ab69ea0a0908260944443c739426cc384ae1a' into clippyup
[rust.git] / library / panic_abort / Cargo.toml
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 = "2021"
8
9 [lib]
10 test = false
11 bench = false
12 doc = false
13
14 [dependencies]
15 alloc = { path = "../alloc" }
16 cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] }
17 core = { path = "../core" }
18 libc = { version = "0.2", default-features = false }
19 compiler_builtins = "0.1.0"