mirror of
https://github.com/mbilker/kbinxml-rs.git
synced 2026-04-25 07:27:01 -05:00
Rust decoder/encoder for Konami's binary XML format
| src | ||
| .gitignore | ||
| Cargo.toml | ||
| LICENSE | ||
| README.md | ||
| testcases_out.kbin | ||
| testcases_out.xml | ||
kbinxml-rs
An encoder/decoder for Konami's binary XML format, used in some of their games.
WARNING! Requires Rust Nightly due to the use of the int_to_from_bytes unstable feature.
Setup
- Setup Rust Nightly through
rustupor your own preferred method of acquiring the nightly version of Rust - For using
kbinxml-rsas a library, add it as a dependency in yourCargo.tomlfile - For using
kbinxml-rsas a standalone application, installkbinxml-rsusingcargo install kbinxml(Note: This will not work at the moment askbinxml-rshas not yet been published to crates.io)
To be written.