1#![feature(new_range_api)]
2#![doc = include_str!("readme.md")]
3#![doc(html_logo_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
4#![doc(html_favicon_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
5mod builder;
6mod formatter;
7pub mod highlighter;
8pub mod kind;
9pub mod language;
10pub mod lexer;
11pub mod lsp;
12#[cfg(feature = "mcp")]
13pub mod mcp;
14pub mod parser;
15
16pub use crate::{builder::SmalltalkBuilder, formatter::SmalltalkFormatter, highlighter::SmalltalkHighlighter, kind::SmalltalkSyntaxKind, language::SmalltalkLanguage, lexer::SmalltalkLexer, lsp::SmalltalkLanguageService, parser::SmalltalkParser};
17
18#[cfg(feature = "mcp")]
19pub use crate::mcp::serve_smalltalk_mcp;
20
21#[cfg(all(feature = "mcp", feature = "axum"))]
22pub use crate::mcp::serve_smalltalk_mcp_axum;