rocketsplash-formats 0.2.2

Shared data types and serialization formats for Rocketsplash TUI animations
Documentation
// <FILE>crates/rocketsplash-formats/src/lib.rs</FILE>
// <DESC>Shared format definitions for Rocketsplash text art</DESC>
// <VERS>VERSION: 1.1.0</VERS>
// <WCTX>Runtime library implementation</WCTX>
// <CLOG>Define core format types, limits, and module exports</CLOG>

//! # rocketsplash-formats
//!
//! Shared serializable types for Rocketsplash file formats.

mod animation;
mod cell;
mod cell_style;
mod font_atlas;
mod limits;
mod render_mode;
mod rgb;
mod splash;
mod style_flags;

pub use animation::*;
pub use cell::*;
pub use cell_style::*;
pub use font_atlas::*;
pub use limits::*;
pub use render_mode::*;
pub use rgb::*;
pub use splash::*;
pub use style_flags::*;

// <FILE>crates/rocketsplash-formats/src/lib.rs</FILE>
// <VERS>END OF VERSION: 1.1.0</VERS>