2021-08-24 20:55:49 -05:00
|
|
|
[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"] }
|
2021-08-25 21:51:12 -05:00
|
|
|
libc = { version = "0.2", optional = true }
|
2021-08-25 22:27:01 -05:00
|
|
|
spin = { version = "0.9", default-features = false, features = ["mutex", "spin_mutex"] }
|
2021-08-25 21:50:33 -05:00
|
|
|
|
|
|
|
[features]
|
2021-08-25 21:51:12 -05:00
|
|
|
alloc = []
|
|
|
|
fde-phdr = ["libc"]
|
|
|
|
fde-registry = ["alloc"]
|
|
|
|
default = ["fde-phdr"]
|
2021-08-24 20:55:49 -05:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = true
|