chara_card 0.3.1

A library to deal with character card formats and `.charx` in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Provides low-level access for decorators.

mod defs;
mod display;
mod error;
mod macros;
mod parse;

#[cfg(test)]
mod tests;

pub use defs::*;
pub use display::*;
pub use error::Error;
pub use parse::extract;