qubit-json 0.8.1

Resource-aware infrastructure for lenient and strict JSON processing
Documentation
// =============================================================================
//    Copyright (c) 2026 Haixing Hu.
//
//    SPDX-License-Identifier: Apache-2.0
//
//    Licensed under the Apache License, Version 2.0.
// =============================================================================
//! Private Serde roles used to build budgeted JSON values.

mod json_key_seed;
mod json_number_lexeme_length;
mod json_value_child_seed;
mod json_value_measurement;
mod json_value_visitor;

pub(super) use json_key_seed::JsonKeySeed;
pub(crate) use json_number_lexeme_length::json_number_lexeme_length;
pub(super) use json_value_child_seed::JsonValueChildSeed;
pub(crate) use json_value_measurement::json_value_measurement;
pub(super) use json_value_visitor::JsonValueVisitor;