decomp-toolkit/Cargo.toml

45 lines
1.1 KiB
TOML
Raw Normal View History

2022-11-27 06:37:29 +00:00
[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"
2022-11-27 06:37:29 +00:00
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"
2022-11-27 06:37:29 +00:00
[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" }
2022-11-28 04:43:46 +00:00
filetime = "0.2.18"
flagset = "0.4.3"
2022-11-27 06:37:29 +00:00
hex = "0.4.3"
indexmap = "1.9.2"
2022-11-27 06:37:29 +00:00
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" }
2022-11-27 06:37:29 +00:00
pretty_env_logger = "0.4.0"
regex = "1.6.0"
sha-1 = "0.10.0"
smallvec = "1.10.0"
2022-11-27 06:37:29 +00:00
topological-sort = "0.2.2"