]> git.lizzy.rs Git - rust.git/blob - src/libunwind/Cargo.toml
Rollup merge of #68485 - kingslef:fix/test-60976, r=nikomatsakis
[rust.git] / src / libunwind / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "unwind"
4 version = "0.0.0"
5 build = "build.rs"
6 edition = "2018"
7 include = [
8   '/libunwind/*',
9 ]
10
11 [lib]
12 name = "unwind"
13 path = "lib.rs"
14 test = false
15 bench = false
16 doc = false
17
18 [dependencies]
19 core = { path = "../libcore" }
20 libc = { version = "0.2.51", features = ['rustc-dep-of-std'], default-features = false }
21 compiler_builtins = "0.1.0"
22 cfg-if = "0.1.8"
23
24 [build-dependencies]
25 cc = { version = "1.0.1" }
26
27 [features]
28 llvm-libunwind = []