| Crates.io | mmd-rs |
| lib.rs | mmd-rs |
| version | 0.0.7-alpha |
| created_at | 2025-12-23 19:57:32.483863+00 |
| updated_at | 2025-12-24 19:46:39.264099+00 |
| description | A Rust parser for MikuMikuDance (MMD) model files |
| homepage | |
| repository | https://github.com/kmate19/mmd-rs |
| max_upload_size | |
| id | 2002209 |
| size | 98,981 |
THIS CRATE IS CURRENTLY A WORK IN PROGRESS AND NOT READY FOR USE!!!!
A Rust parser for MikuMikuDance (MMD) model files.
This crate aims to provide a safe, efficient parser for formats used by MikuMikuDance
use mmd_rs::pmx::Pmx;
let pmx = Pmx::open("path/to/model.pmx").expect("Failed to open PMX file");
println!("Model name: {}", pmx.header().name());
Do not use this crate in production. The API is unstable and major features are incomplete:
MIT