]> git.lizzy.rs Git - rust.git/blob - library/panic_abort/Cargo.toml
Rollup merge of #84126 - 12101111:musl-sanitizer, r=davidtwco
[rust.git] / library / panic_abort / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "panic_abort"
4 version = "0.0.0"
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/rust-lang/rust.git"
7 description = "Implementation of Rust panics via process aborts"
8 edition = "2018"
9
10 [lib]
11 test = false
12 bench = false
13 doc = false
14
15 [dependencies]
16 alloc = { path = "../alloc" }
17 cfg-if = { version = "0.1.8", features = ['rustc-dep-of-std'] }
18 core = { path = "../core" }
19 libc = { version = "0.2", default-features = false }
20 compiler_builtins = "0.1.0"