-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
35 lines (31 loc) · 1.03 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "framehop"
version = "0.13.2"
edition = "2021"
authors = ["Markus Stange <[email protected]>"]
categories = ["development-tools::debugging"]
description = "Stack frame unwinding support for various formats"
keywords = ["unwind", "stackwalk", "profiling", "debug"]
license = "MIT/Apache-2.0"
readme = "Readme.md"
documentation = "https://docs.rs/framehop/"
repository = "https://github.com/mstange/framehop/"
exclude = ["/.github", "/.vscode", "/tests", "/fixtures", "/big-fixtures"]
[dependencies]
gimli = { version = "0.31", default-features = false, features = ["read"] }
macho-unwind-info = { version = "0.5.0", optional = true }
pe-unwind-info = { version = "0.3.0", optional = true }
fallible-iterator = "0.3.0"
arrayvec = { version = "0.7.4", default-features = false }
cfg-if = "1.0.0"
[features]
default = ["std", "macho", "pe"]
macho = ["macho-unwind-info"]
pe = ["pe-unwind-info"]
std = ["arrayvec/std", "gimli/std"]
[dev-dependencies]
object = "0.36"
flate2 = "1.0.28"
itertools = "0.13"
[profile.release]
debug = true