2024-04-01 23:26:48 +11:00
|
|
|
[package]
|
|
|
|
name = "agb-addr2line"
|
|
|
|
version = "0.19.1"
|
|
|
|
edition = "2021"
|
|
|
|
authors = ["Gwilym Inzani <email@gwilym.dev>"]
|
|
|
|
license = "MPL-2.0"
|
|
|
|
description = "CLI utility to convert agb stack trace dumps into human readable stack traces"
|
|
|
|
repository = "https://github.com/agbrs/agb"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
|
|
|
clap = { version = "4", features = ["derive"] }
|
2024-04-01 23:43:08 +11:00
|
|
|
addr2line = { version = "0.21", default-features = false, features = [
|
|
|
|
"rustc-demangle",
|
|
|
|
"std-object",
|
|
|
|
] }
|
2024-04-02 00:10:23 +11:00
|
|
|
colored = "2"
|
2024-04-01 23:26:48 +11:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
opt-level = 3
|
|
|
|
debug = true
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
lto = "fat"
|
|
|
|
debug = true
|