agb/agb-debug/Cargo.toml

20 lines
513 B
TOML
Raw Normal View History

2024-04-01 23:26:48 +11:00
[package]
2024-04-10 05:13:20 +10:00
name = "agb-debug"
2024-05-25 22:20:03 +10:00
version = "0.20.2"
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-04-18 09:43:47 +10:00
thiserror = "1"
2024-04-01 23:26:48 +11:00
clap = { version = "4", features = ["derive"] }
2024-05-26 17:04:06 +10:00
addr2line = { version = "0.23", default-features = false, features = [
2024-04-01 23:43:08 +11:00
"rustc-demangle",
"std-object",
] }
2024-04-02 00:10:23 +11:00
colored = "2"
rmp-serde = "1"
lz4_flex = "0.11"