//! JSON parsing, serialization, and NDJSON utilities
//!
//! This module provides comprehensive JSON support including:
//! - **Parsing**: Convert JSON strings and byte streams to [`JsonValue`]
//! - **Serialization**: Convert [`JsonValue`] to JSON strings
//! - **NDJSON**: Read newline-delimited JSON streams
//! - **Types**: Work with [`JsonValue`], [`JsonArray`], and [`JsonObject`]
//!
//! # Examples
//!
//! ```rust
//! use versatiles_core::json::parse_json_str;
//!
//! // Parse JSON from a string
//! let json = parse_json_str(r#"{"name": "example", "count": 42}"#).unwrap();
//!
//! // Access the parsed object
//! assert!(json.as_object().is_ok());
//! ```
pub use ;
pub use ;
pub use *;
pub use ;