-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 877 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 877 Bytes
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
[package]
name = "axbacktrace"
version = "0.1.2"
description = "Backtrace for ArceOS"
authors = ["Mivik <mivikq@gmail.com>", "朝倉水希 <asakuramizu111@gmail.com>"]
repository = "https://github.com/Starry-OS/axbacktrace"
license = "MIT OR Apache-2.0"
edition = "2024"
keywords = ["DWARF", "debug", "backtrace", "unwinding"]
categories = ["development-tools::debugging"]
[features]
alloc = []
dwarf = ["dep:addr2line", "dep:gimli", "dep:paste", "alloc"]
[dependencies]
cfg-if = "1"
log = "0.4"
spin = { version = "0.10", default-features = false, features = ["once"] }
addr2line = { version = "0.26", default-features = false, optional = true, features = [
"cpp_demangle",
"rustc-demangle",
] }
gimli = { version = "0.33", default-features = false, optional = true, features = [
"read-core",
"endian-reader",
] }
paste = { version = "1", optional = true }