RAPE-toolkit/Cargo.toml

33 lines
742 B
TOML
Raw Permalink Normal View History

[workspace]
resolver = "2"
members = [
"aes-key-finder",
"cursor",
"offset-finder",
"pe-utils",
2025-01-02 23:10:22 +00:00
"restorer",
"tlzma"
]
[workspace.package]
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
goblin = "0.9.2"
log = "0.4.22"
2025-01-02 23:10:22 +00:00
lzma-rs = { version = "0.3.0", features = ["raw_decoder"] }
patternscanner = "0.5.0"
serde = { version = "1.0.217", features = ["derive"] }
thiserror = "2.0.9"
widestring = "1.1.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.