45 lines
1.1 KiB
TOML
45 lines
1.1 KiB
TOML
[package]
|
|
name = "decomp-toolkit"
|
|
description = "GameCube/Wii decompilation project tools."
|
|
authors = ["Luke Street <luke@street.dev>"]
|
|
license = "MIT OR Apache-2.0"
|
|
version = "0.2.1"
|
|
edition = "2021"
|
|
publish = false
|
|
build = "build.rs"
|
|
repository = "https://github.com/encounter/decomp-toolkit"
|
|
readme = "README.md"
|
|
categories = ["command-line-utilities"]
|
|
|
|
[[bin]]
|
|
name = "dtk"
|
|
path = "src/main.rs"
|
|
|
|
[profile.release]
|
|
lto = "thin"
|
|
panic = "abort"
|
|
strip = "debuginfo"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.64"
|
|
argh = "0.1.8"
|
|
base16ct = "0.1.1"
|
|
cwdemangle = "0.1.3"
|
|
dol = { git = "https://github.com/encounter/ppc750cl", rev = "5f6e991bf495388c4104f188d2e90c79da9f78de" }
|
|
filetime = "0.2.18"
|
|
flagset = "0.4.3"
|
|
hex = "0.4.3"
|
|
indexmap = "1.9.2"
|
|
lazy_static = "1.4.0"
|
|
log = "0.4.17"
|
|
memchr = "2.5.0"
|
|
memmap2 = "0.5.7"
|
|
multimap = "0.8.3"
|
|
object = { version = "0.30.0", features = ["read_core", "std", "elf", "write_std"], default-features = false }
|
|
ppc750cl = { git = "https://github.com/encounter/ppc750cl", rev = "5f6e991bf495388c4104f188d2e90c79da9f78de" }
|
|
pretty_env_logger = "0.4.0"
|
|
regex = "1.6.0"
|
|
sha-1 = "0.10.0"
|
|
smallvec = "1.10.0"
|
|
topological-sort = "0.2.2"
|