toon-format 0.4.5

Token-Oriented Object Notation (TOON) - a token-efficient JSON alternative for LLM prompts
Documentation
//! Application state management.

pub mod app_state;
pub mod editor_state;
pub mod file_state;
pub mod repl_state;

pub use app_state::{
    AppState,
    ConversionStats,
    Mode,
};
pub use editor_state::{
    EditorMode,
    EditorState,
};
pub use file_state::{
    ConversionHistory,
    FileState,
};
pub use repl_state::{
    ReplLine,
    ReplLineKind,
    ReplState,
};