[package] name = "decomp-toolkit" description = "Yet another GameCube/Wii decompilation toolkit." authors = ["Luke Street "] license = "MIT OR Apache-2.0" version = "0.7.6" edition = "2021" publish = false repository = "https://github.com/encounter/decomp-toolkit" readme = "README.md" categories = ["command-line-utilities"] rust-version = "1.70.0" [[bin]] name = "dtk" path = "src/main.rs" [profile.release] panic = "abort" [profile.release-lto] inherits = "release" lto = "thin" strip = "debuginfo" [dependencies] anyhow = { version = "1.0.81", features = ["backtrace"] } ar = { git = "https://github.com/bjorn3/rust-ar.git", branch = "write_symbol_table" } argp = "0.3.0" base16ct = "0.2.0" base64 = "0.22.0" cwdemangle = "1.0.0" dol = { git = "https://github.com/encounter/ppc750cl", rev = "4a2bbbc6f84dcb76255ab6f3595a8d4a0ce96618" } enable-ansi-support = "0.2.1" filetime = "0.2.23" fixedbitset = "0.5.0" flagset = { version = "0.4.5", features = ["serde"] } flate2 = "1.0.28" glob = "0.3.1" hex = "0.4.3" indent = "0.1.1" indexmap = "2.2.5" itertools = "0.12.1" log = "0.4.21" memchr = "2.7.1" memmap2 = "0.9.4" multimap = "0.10.0" nintendo-lz = "0.1.3" num_enum = "0.7.2" objdiff-core = { git = "https://github.com/encounter/objdiff", rev = "a5668b484b3db9e85d2aa8aeb84b37bff6077df6", features = ["ppc"] } #objdiff-core = { path = "../objdiff/objdiff-core", features = ["ppc"] } object = { version = "0.34.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"] } path-slash = "0.2.1" petgraph = { version = "0.6.4", default-features = false } ppc750cl = { git = "https://github.com/encounter/ppc750cl", rev = "4a2bbbc6f84dcb76255ab6f3595a8d4a0ce96618" } rayon = "1.9.0" regex = "1.10.3" rustc-hash = "1.1.0" sanitise-file-name = "1.0.0" serde = "1.0.197" serde_json = "1.0.114" serde_repr = "0.1.18" serde_yaml = "0.9.32" sha-1 = "0.10.1" smallvec = "1.13.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"] }