First public commit

This commit is contained in:
2026-08-09 00:08:31 +08:00
commit 21cd151e15
49 changed files with 14041 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
[package]
name = "senbei"
version = "1.0.0"
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