# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "framehop" version = "0.13.1" authors = ["Markus Stange "] build = false exclude = [ "/.github", "/.vscode", "/tests", "/fixtures", "/big-fixtures", ] autobins = false autoexamples = false autotests = false autobenches = false description = "Stack frame unwinding support for various formats" documentation = "https://docs.rs/framehop/" readme = "Readme.md" keywords = [ "unwind", "stackwalk", "profiling", "debug", ] categories = ["development-tools::debugging"] license = "MIT/Apache-2.0" repository = "https://github.com/mstange/framehop/" [profile.release] debug = 2 [lib] name = "framehop" path = "src/lib.rs" [dependencies.arrayvec] version = "0.7.4" default-features = false [dependencies.cfg-if] version = "1.0.0" [dependencies.fallible-iterator] version = "0.3.0" [dependencies.gimli] version = "0.31" features = ["read"] default-features = false [dependencies.macho-unwind-info] version = "0.4.0" optional = true [dependencies.pe-unwind-info] version = "0.3.0" optional = true [dev-dependencies.flate2] version = "1.0.28" [dev-dependencies.itertools] version = "0.13" [dev-dependencies.object] version = "0.36" [features] default = [ "std", "macho", "pe", ] macho = ["macho-unwind-info"] pe = ["pe-unwind-info"] std = [ "arrayvec/std", "gimli/std", ]