35 lines
807 B
TOML
35 lines
807 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"aes-key-finder",
|
|
"cursor",
|
|
"descriptor-to-proto",
|
|
"offset-finder",
|
|
"pe-utils",
|
|
"restorer",
|
|
"tlzma"
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[workspace.dependencies]
|
|
goblin = "0.9.3"
|
|
log = "0.4.27"
|
|
lzma-rs = { version = "0.3.0", features = ["raw_decoder"] }
|
|
patternscanner = "0.5.0"
|
|
prost = "0.13.5"
|
|
prost-types = "0.13.5"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
thiserror = "2.0.12"
|
|
widestring = "1.2.0"
|
|
|
|
offset-finder = { path = "offset-finder" }
|
|
pe-utils = { path = "pe-utils" }
|
|
|
|
[profile.release]
|
|
strip = true # Automatically strip symbols from the binary.
|
|
lto = true # Link-time optimization.
|
|
opt-level = 3 # Optimization level 3.
|
|
codegen-units = 1 # Maximum size reduction optimizations.
|