decomp-toolkit/Cargo.toml

74 lines
2.3 KiB
TOML
Raw Permalink Normal View History

2022-11-26 22:37:29 -08:00
[package]
name = "decomp-toolkit"
description = "Yet another GameCube/Wii decompilation toolkit."
2022-11-26 22:37:29 -08:00
authors = ["Luke Street <luke@street.dev>"]
license = "MIT OR Apache-2.0"
2024-05-17 06:12:05 -07:00
version = "0.8.2"
2022-11-26 22:37:29 -08:00
edition = "2021"
publish = false
repository = "https://github.com/encounter/decomp-toolkit"
readme = "README.md"
categories = ["command-line-utilities"]
rust-version = "1.70.0"
2022-11-26 22:37:29 -08:00
[[bin]]
name = "dtk"
path = "src/main.rs"
[profile.release]
panic = "abort"
[profile.release-lto]
inherits = "release"
lto = "thin"
strip = "debuginfo"
2022-11-26 22:37:29 -08:00
[dependencies]
anyhow = { version = "1.0.82", features = ["backtrace"] }
ar = { git = "https://github.com/bjorn3/rust-ar.git", branch = "write_symbol_table" }
argp = "0.3.0"
2023-07-21 14:59:07 -07:00
base16ct = "0.2.0"
base64 = "0.22.1"
cwdemangle = "1.0.0"
enable-ansi-support = "0.2.1"
filetime = "0.2.23"
fixedbitset = "0.5.7"
flagset = { version = "0.4.5", features = ["serde"] }
2023-07-21 14:59:07 -07:00
glob = "0.3.1"
2022-11-26 22:37:29 -08:00
hex = "0.4.3"
indent = "0.1.1"
indexmap = "2.2.6"
itertools = "0.12.1"
log = "0.4.21"
memchr = "2.7.2"
memmap2 = "0.9.4"
multimap = "0.10.0"
nintendo-lz = "0.1.3"
nodtool = { git = "https://github.com/encounter/nod-rs", rev = "03b83484cb17f94408fa0ef8e50d94951464d1b2" }
#nodtool = { path = "../nod-rs/nodtool" }
num_enum = "0.7.2"
objdiff-core = { git = "https://github.com/encounter/objdiff", rev = "8b36fa4fc657d9edf767797af9d394bb32898711", features = ["ppc"] }
#objdiff-core = { path = "../objdiff/objdiff-core", features = ["ppc"] }
object = { version = "0.35.0", features = ["read_core", "std", "elf", "write_std"], default-features = false }
once_cell = "1.19.0"
orthrus-ncompress = "0.2.0"
owo-colors = { version = "4.0.0", features = ["supports-colors"] }
2023-08-24 21:54:29 -07:00
path-slash = "0.2.1"
petgraph = { version = "0.6.4", default-features = false }
ppc750cl = { git = "https://github.com/encounter/ppc750cl", rev = "6cbd7d888c7082c2c860f66cbb9848d633f753ed" }
rayon = "1.10.0"
regex = "1.10.4"
rustc-hash = "1.1.0"
sanitise-file-name = "1.0.0"
serde = "1.0.199"
serde_json = "1.0.116"
serde_repr = "0.1.19"
serde_yaml = "0.9.34"
2023-07-21 14:59:07 -07:00
sha-1 = "0.10.1"
supports-color = "3.0.0"
syntect = { version = "5.2.0", features = ["parsing", "regex-fancy", "dump-load"], default-features = false }
tracing = "0.1.40"
tracing-attributes = "0.1.27"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
xxhash-rust = { version = "0.8.10", features = ["xxh3"] }