]> git.lizzy.rs Git - rust.git/blob - library/unwind/Cargo.toml
Rollup merge of #84587 - jyn514:rustdoc-lint-block, r=CraftSpider
[rust.git] / library / unwind / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "unwind"
4 version = "0.0.0"
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/rust-lang/rust.git"
7 edition = "2018"
8 include = [
9   '/libunwind/*',
10 ]
11
12 [lib]
13 test = false
14 bench = false
15 doc = false
16
17 [dependencies]
18 core = { path = "../core" }
19 libc = { version = "0.2.79", features = ['rustc-dep-of-std'], default-features = false }
20 compiler_builtins = "0.1.0"
21 cfg-if = "0.1.8"
22
23 [build-dependencies]
24 cc = "1.0.67"
25
26 [features]
27 llvm-libunwind = []
28 system-llvm-libunwind = []