Source code

Revision control

Copy as Markdown

Other Tools

# 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.12.1"
authors = ["Markus Stange <mstange.moz@gmail.com>"]
exclude = [
"/.github",
"/.vscode",
"/tests",
"/fixtures",
"/big-fixtures",
]
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"
[profile.release]
debug = 2
[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.30"
features = ["read"]
default-features = false
[dependencies.macho-unwind-info]
version = "0.4.0"
optional = true
[dependencies.object]
version = "0.36"
features = ["read_core"]
optional = true
default-features = false
[dependencies.pe-unwind-info]
version = "0.2.1"
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",
]