/*******************************************************************************
*
* Copyright (c) 2026 Haixing Hu.
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0.
*
******************************************************************************/
//! 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.
//!
pub use JsonDecodeError;
pub use JsonDecodeErrorKind;
pub use JsonDecodeOptions;
pub use JsonDecodeStage;
pub use JsonTopLevelKind;
pub use LenientJsonDecoder;