]> git.lizzy.rs Git - rust.git/blob - library/panic_unwind/Cargo.toml
Rollup merge of #85912 - LingMan:iter_any, r=nagisa
[rust.git] / library / panic_unwind / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "panic_unwind"
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 stack unwinding"
8 edition = "2018"
9
10 [lib]
11 test = false
12 bench = false
13 doc = false
14
15 [dependencies]
16 alloc = { path = "../alloc" }
17 core = { path = "../core" }
18 libc = { version = "0.2", default-features = false }
19 unwind = { path = "../unwind" }
20 compiler_builtins = "0.1.0"
21 cfg-if = "0.1.8"