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