chara_card 0.3.2

A library to deal with character card formats and `.charx` in Rust.
Documentation
//! Provides low-level access on character card format.

pub mod cbs;
mod content;
pub mod decorator;
mod error;
pub mod ext;
mod resolve;
mod shm;
pub mod v1;
pub mod v2;
pub mod v3;
mod version;

pub use content::*;
pub use error::*;
pub use resolve::*;
pub use shm::*;
pub use version::*;