mirror of
https://github.com/Momoko-Ayase/Senbei.git
synced 2026-09-19 03:57:59 -04:00
Adds the Android protection-scheme pipeline: hollowed ELF64/AArch64 libraries are restored statically (stage-1/stage-2 module extraction, container decode, dynamic-linker table rebuild), with app-package (.apk/.apks/.xapk) container handling, cross-source content dedup, and il2cpp metadata support for the Android variants (seeded RID permutation; embedded XOR-wrapped blob extraction). The single senbei CLI now routes single .so files, packages, and folders by content; outputs follow the existing .unpack-infix naming under <root>/unpack or --out. PE behavior is unchanged (35/35 goldens).
22 lines
470 B
TOML
22 lines
470 B
TOML
[package]
|
|
name = "senbei-wasm"
|
|
version = "1.2.0"
|
|
edition = "2024"
|
|
description = "WebAssembly bindings for senbei (browser frontend assets live in web/)"
|
|
license = "AGPL-3.0-only"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
senbei-io = { path = "../senbei-io" }
|
|
senbei-metadata = { path = "../senbei-metadata" }
|
|
senbei-pe = { path = "../senbei-pe" }
|
|
wasm-bindgen = "0.2"
|
|
console_error_panic_hook = "0.1"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|