Files
Senbei/Cargo.toml
T
2026-08-16 05:51:39 +08:00

43 lines
826 B
TOML

[package]
name = "senbei"
version = "1.0.1"
edition = "2024"
description = "Static unpacker for Crackproof-protected PE files"
license = "AGPL-3.0-only"
keywords = ["unpacker", "reverse-engineering", "pe", "security-research"]
categories = ["command-line-utilities"]
[lib]
name = "senbei"
path = "src/lib.rs"
[[bin]]
name = "senbei"
path = "src/main.rs"
[dependencies]
anyhow = "1"
thiserror = "2"
walkdir = "2"
indicatif = "0.18"
owo-colors = "4"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.62", features = [
"Win32_Foundation",
"Win32_System_Console",
"Win32_System_SystemInformation",
] }
[target.'cfg(all(not(windows), not(target_arch = "wasm32")))'.dependencies]
libc = "0.2"
[dev-dependencies]
tempfile = "3"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true