agb/agb-debug/Cargo.toml

20 lines
658 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]
addr2line = { version = "0.23", default-features = false, features = ["rustc-demangle"] }
gimli = { version = "0.30", default-features = false, features = ["endian-reader", "std"] }
object = { version = "0.36", default-features = false, features = ["read"] }
2024-04-18 09:43:47 +10:00
thiserror = "1"
2024-04-01 23:26:48 +11:00
clap = { version = "4", features = ["derive"] }
2024-04-02 00:10:23 +11:00
colored = "2"
rmp-serde = "1"
lz4_flex = "0.11"