1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// this_file: src/lib.rs
// Main vexy_json library that re-exports core functionality
//! # vexy_json
//!
//! A forgiving JSON parser with support for relaxed JSON syntax.
//!
//! This crate provides a JSON parser that accepts relaxed JSON syntax including:
//! - Comments (single-line and multi-line)
//! - Trailing commas
//! - Unquoted object keys
//! - Single-quoted strings
//! - And more forgiving features
//!
//! ## Quick Start
//!
//! ```rust
//! use vexy_json::parse;
//!
//! let result = parse(r#"{"key": "value"}"#).unwrap();
//! ```
// Re-export core functionality
pub use ;
// Re-export streaming functionality
pub use ;
// Re-export AST types
pub use ;
// Re-export error types
pub use ;
// Re-export serde functionality if feature is enabled
pub use *;