1#![feature(new_range_api)]
2#![feature(portable_simd)]
3#![doc = include_str!("readme.md")]
4#![doc(html_logo_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
5#![doc(html_favicon_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
6
7pub mod ast;
8pub mod builder;
9#[cfg(feature = "oak-highlight")]
10pub mod highlighter;
11pub mod kind;
12pub mod language;
13pub mod lexer;
14pub mod lsp;
15#[cfg(feature = "mcp")]
16pub mod mcp;
17pub mod parser;
18
19pub use crate::{ast::JsonValue, builder::JsonBuilder, kind::JsonSyntaxKind, language::JsonLanguage, lexer::JsonLexer, lsp::JsonLanguageService, parser::JsonParser};