]> git.lizzy.rs Git - rust.git/blob - library/unwind/Cargo.toml
Remove unsafe impl Send for CompletedTest & TestResult
[rust.git] / library / unwind / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "unwind"
4 version = "0.0.0"
5 edition = "2018"
6 include = [
7   '/libunwind/*',
8 ]
9
10 [lib]
11 test = false
12 bench = false
13 doc = false
14
15 [dependencies]
16 core = { path = "../core" }
17 libc = { version = "0.2.79", features = ['rustc-dep-of-std'], default-features = false }
18 compiler_builtins = "0.1.0"
19 cfg-if = "0.1.8"
20
21 [build-dependencies]
22 cc = { version = "1.0.1" }
23
24 [features]
25 llvm-libunwind = []
26 system-llvm-libunwind = []