Skip to main content

oak_protobuf/
lib.rs

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")]
5
6pub mod ast;
7pub mod builder;
8pub mod highlighter;
9pub mod kind;
10pub mod language;
11pub mod lexer;
12pub mod lsp;
13pub mod mcp;
14pub mod parser;
15
16pub use crate::{
17    ast::ProtobufRoot,
18    builder::ProtobufBuilder,
19    highlighter::{HighlightKind, Highlighter, ProtobufHighlighter},
20    kind::ProtobufSyntaxKind,
21    language::ProtobufLanguage,
22    lsp::ProtobufLanguageService,
23    parser::ProtobufParser,
24};
25
26pub use crate::mcp::serve_protobuf_mcp;