/*******************************************************************************
*
* Copyright (c) 2026.
* Haixing Hu, Qubit Co. Ltd.
*
* All rights reserved.
*
******************************************************************************/
//! Provides the public API for the `qubit-json` crate.
//!
//! The crate exposes a lenient JSON decoder and the related option and error
//! types needed to normalize and deserialize JSON text from
//! non-fully-trusted sources.
//!
//! Author: Haixing Hu
pub use JsonDecodeError;
pub use JsonDecodeErrorKind;
pub use JsonDecodeOptions;
pub use JsonTopLevelKind;
pub use LenientJsonDecoder;
pub use LenientJsonNormalizer;