ason 2.1.1

ASON is a data serialization format that evolved from JSON, featuring strong numeric typing and native support for enumeration types.
Documentation
// Copyright (c) 2026 Hemashushu <hippospark@gmail.com>, All rights reserved.
//
// This Source Code Form is subject to the terms of
// the Mozilla Public License version 2.0 and additional exceptions.
// For more details, see the LICENSE, LICENSE.additional, and CONTRIBUTING files.

mod char_with_position;
mod error;
mod error_printer;
mod lexer;
mod normalizer;
mod peekable_iterator;
mod position;
mod range;

pub mod ast;
pub mod de;
pub mod parser;
pub mod ser;
pub mod token;
pub mod utf8_char_iterator;
pub mod writer;