Skip to main content

qubit_json/value/
mod.rs

1// =============================================================================
2//    Copyright (c) 2026 Haixing Hu.
3//
4//    SPDX-License-Identifier: Apache-2.0
5//
6//    Licensed under the Apache License, Version 2.0.
7// =============================================================================
8//! Builds [`serde_json::Value`] values while charging a JSON value budget.
9
10mod accounting_json_value_seed;
11mod duplicate_key_rejecting_json_value;
12mod json_value_encoder;
13
14pub use accounting_json_value_seed::AccountingJsonValueSeed;
15pub use duplicate_key_rejecting_json_value::DuplicateKeyRejectingJsonValue;
16pub use duplicate_key_rejecting_json_value::DuplicateKeyRejectingJsonValueSeed;
17pub use json_value_encoder::JsonValueEncoder;
18
19pub mod traverse;
20
21mod internal;