[package] name = "unwinding" version = "0.1.4" authors = ["Gary Guo "] edition = "2018" license = "MIT OR Apache-2.0" description = "Unwinding library in Rust and for Rust" repository = "https://github.com/nbdd0121/unwinding/" [workspace] members = ["cdylib", "example"] [dependencies] gimli = { version = "0.26.1", default-features = false, features = ["read-core"] } libc = { version = "0.2", optional = true } spin = { version = "0.9", optional = true, default-features = false, features = ["mutex", "spin_mutex"] } [features] alloc = [] unwinder = [] fde-phdr = ["libc"] fde-phdr-dl = ["fde-phdr"] fde-phdr-aux = ["fde-phdr"] fde-registry = ["alloc"] fde-static = [] fde-gnu-eh-frame-hdr = [] dwarf-expr = [] hide-trace = [] personality = [] personality-dummy = [] print = ["libc"] panicking = [] panic = ["panicking", "alloc"] panic-handler = ["print", "panic"] panic-handler-dummy = [] system-alloc = [] default = ["unwinder", "dwarf-expr", "hide-trace", "fde-phdr-dl", "fde-registry"] [profile.release] debug = true [package.metadata.docs.rs] features = ["panic-handler"]