| Crates.io | lpk |
| lib.rs | lpk |
| version | 0.0.0 |
| created_at | 2025-03-31 08:34:16.809288+00 |
| updated_at | 2025-03-31 08:34:16.809288+00 |
| description | Decrypt the `.lkp` file from `Live2dViewerEx` |
| homepage | |
| repository | https://github.com/oovm/sub_projects |
| max_upload_size | |
| id | 1613184 |
| size | 49,402 |
A Rust library for decrypting .lkp files from Live2dViewerEx.
.lkp files from Live2dViewerExanyhow for error handlingAdd this to your Cargo.toml:
[dependencies]
lpk = { path = "../lpk-core" }
anyhow = "1.0"
use lpk::LpkLoader;
use anyhow::Result;
use std::path::Path;
fn main() -> Result<()> {
let loader = LpkLoader::new(Path::new("example.lkp"))?;
// Process the decrypted data
Ok(())
}