chara_card 0.2.0

A library to deal with character card formats and `.charx` in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
mod display;
mod node;
mod parse;

#[cfg(test)]
mod tests;

pub use display::*;
pub use node::Node;
pub use parse::parse;