unwinding/Cargo.toml
2021-08-26 03:56:15 +01:00

22 lines
530 B
TOML

[package]
name = "unwind"
version = "0.1.0"
authors = ["Gary Guo <gary@garyguo.net>"]
edition = "2018"
[dependencies]
gimli = { version = "0.25.0", default-features = false, features = ["read"] }
libc = { version = "0.2", optional = true }
once_cell = { version = "1.8", optional = true }
spin = { version = "0.9", default-features = false, features = ["lazy", "mutex", "spin_mutex"] }
[features]
std = ["once_cell"]
alloc = []
fde-phdr = ["libc"]
fde-registry = ["alloc"]
default = ["fde-phdr"]
[profile.release]
debug = true