lpk

Crates.iolpk
lib.rslpk
version0.0.0
created_at2025-03-31 08:34:16.809288+00
updated_at2025-03-31 08:34:16.809288+00
descriptionDecrypt the `.lkp` file from `Live2dViewerEx`
homepage
repositoryhttps://github.com/oovm/sub_projects
max_upload_size
id1613184
size49,402
Publisher (github:doki-land:publisher)

documentation

https://docs.rs/sub_projects

README

lpk

A Rust library for decrypting .lkp files from Live2dViewerEx.

Features

  • Decrypt .lkp files from Live2dViewerEx
  • Simple and easy-to-use API
  • Integration with anyhow for error handling

Installation

Add this to your Cargo.toml:

[dependencies]
lpk = { path = "../lpk-core" }
anyhow = "1.0"

Usage

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(())
}
Commit count: 0

cargo fmt