//! Minimal JSON parser for OAuth/OIDC response handling.
//!
//! Provides an RFC 8259 compliant JSON parser with security limits suitable
//! for parsing token endpoint responses, discovery documents, and JWKS
//! payloads. No external dependencies — the parser operates directly on
//! UTF-8 byte slices.
//!
//! # Security
//!
//! The parser enforces configurable depth and size limits to prevent
//! stack overflow and out-of-memory conditions from malicious input.
//! Duplicate object keys are rejected to prevent key confusion attacks.
pub use JsonParseError;
pub use escape_json_string;
pub use JsonValue;