2024-04-01 23:26:48 +11:00
|
|
|
[package]
|
2024-04-10 05:13:20 +10:00
|
|
|
name = "agb-debug"
|
2024-10-03 08:08:04 +10:00
|
|
|
version = "0.21.1"
|
2024-04-01 23:26:48 +11:00
|
|
|
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]
|
2024-07-16 19:27:13 +10:00
|
|
|
addr2line = { version = "0.24", default-features = false, features = ["rustc-demangle"] }
|
2024-07-17 04:37:59 +10:00
|
|
|
gimli = { version = "0.31", default-features = false, features = ["endian-reader", "std"] }
|
2024-05-27 18:58:23 +10:00
|
|
|
object = { version = "0.36", default-features = false, features = ["read"] }
|
|
|
|
|
2024-11-06 14:20:03 +11:00
|
|
|
thiserror = "2"
|
2024-04-01 23:26:48 +11:00
|
|
|
clap = { version = "4", features = ["derive"] }
|
2024-04-02 00:10:23 +11:00
|
|
|
colored = "2"
|
2024-04-04 00:03:42 +11:00
|
|
|
rmp-serde = "1"
|
|
|
|
lz4_flex = "0.11"
|