forked from gimli-rs/addr2line
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
78 lines (64 loc) · 2.32 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "addr2line"
version = "0.16.0"
description = "A cross-platform symbolication library written in Rust, using `gimli`"
documentation = "https://docs.rs/addr2line"
exclude = ["/benches/*", "/fixtures/*"]
keywords = ["DWARF", "debug", "elf", "symbolicate", "atos"]
categories = ["development-tools::debugging"]
license = "Apache-2.0/MIT"
readme = "./README.md"
repository = "https://github.com/gimli-rs/addr2line"
[badges]
travis-ci = { repository = "gimli-rs/addr2line" }
[dependencies]
gimli = { version = "0.25", default-features = false, features = ["read"] }
fallible-iterator = { version = "0.2", default-features = false, optional = true }
object = { version = "0.26", default-features = false, features = ["read"], optional = true }
smallvec = { version = "1", default-features = false, optional = true }
rustc-demangle = { version = "0.1", optional = true }
cpp_demangle = { version = "0.3", default-features = false, optional = true }
# Internal feature, only used when building as part of libstd, not part of the
# stable interface of this crate.
core = { version = '1.0.0', optional = true, package = 'rustc-std-workspace-core' }
alloc = { version = '1.0.0', optional = true, package = 'rustc-std-workspace-alloc' }
compiler_builtins = { version = '0.1.2', optional = true }
[dev-dependencies]
memmap = "0.7"
clap = "2"
backtrace = "0.3.13"
findshlibs = "0.8"
rustc-test = "0.3"
auxiliary = { path = "tests/auxiliary" }
typed-arena = "2"
[profile.dev]
split-debuginfo = 'packed'
[profile.test]
split-debuginfo = 'packed'
[profile.release]
debug = true
split-debuginfo = 'packed'
[profile.bench]
debug = true
codegen-units = 1
split-debuginfo = 'packed'
[features]
default = ["rustc-demangle", "cpp_demangle", "std-object", "fallible-iterator", "smallvec"]
std = ["gimli/std"]
std-object = ["std", "object", "object/std", "object/compression", "gimli/endian-reader"]
# Internal feature, only used when building as part of libstd, not part of the
# stable interface of this crate.
rustc-dep-of-std = ['core', 'alloc', 'compiler_builtins', 'gimli/rustc-dep-of-std']
[[test]]
name = "output_equivalence"
harness = false
required-features = ["std-object"]
[[test]]
name = "correctness"
required-features = ["default"]
[[test]]
name = "parse"
required-features = ["std-object"]
[[example]]
name = "addr2line"
required-features = ["std-object"]