toon-format 0.4.5

Token-Oriented Object Notation (TOON) - a token-efficient JSON alternative for LLM prompts
Documentation
mod delimiter;
mod errors;
mod folding;
mod options;
mod value;

pub use delimiter::Delimiter;
pub use errors::{
    ErrorContext,
    ToonError,
    ToonResult,
};
pub use folding::{
    is_identifier_segment,
    KeyFoldingMode,
    PathExpansionMode,
};
pub use options::{
    DecodeOptions,
    EncodeOptions,
    Indent,
};
pub use value::{
    IntoJsonValue,
    JsonValue,
    Number,
};