]> git.proxmox.com Git - rustc.git/blob - library/unwind/Cargo.toml
New upstream version 1.67.1+dfsg1
[rustc.git] / library / unwind / Cargo.toml
1 [package]
2 name = "unwind"
3 version = "0.0.0"
4 license = "MIT OR Apache-2.0"
5 repository = "https://github.com/rust-lang/rust.git"
6 edition = "2021"
7 include = [
8 '/libunwind/*',
9 ]
10
11 [lib]
12 test = false
13 bench = false
14 doc = false
15
16 [dependencies]
17 core = { path = "../core" }
18 libc = { version = "0.2.79", features = ['rustc-dep-of-std'], default-features = false }
19 compiler_builtins = "0.1.0"
20 cfg-if = "1.0"
21
22 [build-dependencies]
23 cc = "1.0.76"
24
25 [features]
26
27 # Only applies for Linux and Fuchsia targets
28 # Static link to the in-tree build of llvm libunwind
29 llvm-libunwind = []
30
31 # Only applies for Linux and Fuchsia targets
32 # If crt-static is enabled, static link to `libunwind.a` provided by system
33 # If crt-static is disabled, dynamic link to `libunwind.so` provided by system
34 system-llvm-libunwind = []