]> git.proxmox.com Git - rustc.git/blame - library/unwind/Cargo.toml
New upstream version 1.67.1+dfsg1
[rustc.git] / library / unwind / Cargo.toml
CommitLineData
a7813a04 1[package]
a7813a04
XL
2name = "unwind"
3version = "0.0.0"
cdc7bbd5
XL
4license = "MIT OR Apache-2.0"
5repository = "https://github.com/rust-lang/rust.git"
5099ac24 6edition = "2021"
532ac7d7
XL
7include = [
8 '/libunwind/*',
9]
a7813a04
XL
10
11[lib]
a7813a04 12test = false
476ff2be
SL
13bench = false
14doc = false
a7813a04
XL
15
16[dependencies]
3dfed10e 17core = { path = "../core" }
29967ef6 18libc = { version = "0.2.79", features = ['rustc-dep-of-std'], default-features = false }
0731742a 19compiler_builtins = "0.1.0"
487cf647 20cfg-if = "1.0"
532ac7d7
XL
21
22[build-dependencies]
487cf647 23cc = "1.0.76"
532ac7d7
XL
24
25[features]
17df50a5
XL
26
27# Only applies for Linux and Fuchsia targets
28# Static link to the in-tree build of llvm libunwind
e1599b0c 29llvm-libunwind = []
17df50a5
XL
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
29967ef6 34system-llvm-libunwind = []