mirror of
https://github.com/Zenithsiz/dcb.git
synced 2026-02-09 11:48:16 +00:00
Added an iterator over function, data and misc (`ExeItem`) for the executable.
49 lines
693 B
TOML
49 lines
693 B
TOML
[package]
|
|
name = "dcb-tools"
|
|
version = "0.1.0"
|
|
authors = ["Filipe Rodrigues <filipejacintorodrigues1@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "extractor"
|
|
path = "src/extractor/main.rs"
|
|
|
|
[[bin]]
|
|
name = "patcher"
|
|
path = "src/patcher/main.rs"
|
|
|
|
[[bin]]
|
|
name = "decompiler"
|
|
path = "src/decompiler/main.rs"
|
|
|
|
[dependencies]
|
|
# Dcb
|
|
dcb = { path = "../dcb" }
|
|
dcb-io = { path = "../dcb-io" }
|
|
dcb-exe = { path = "../dcb-exe" }
|
|
dcb-util = { path = "../dcb-util" }
|
|
|
|
# Text
|
|
ascii = "1.0"
|
|
|
|
# Helpers
|
|
int-conv = "0.1"
|
|
byteorder = "1.3"
|
|
|
|
# Cmd
|
|
clap = "2.33"
|
|
|
|
# Logging
|
|
log = "0.4"
|
|
simplelog = "0.8"
|
|
|
|
# Error handling
|
|
anyhow = "1.0"
|
|
|
|
# Derives
|
|
derive_more = "0.99"
|
|
|
|
# Serde
|
|
serde = "1.0"
|
|
serde_yaml = "0.8"
|