Skip to main content

oak_dhall/
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;
7mod kind;
8mod language;
9mod lexer;
10pub mod parser;
11
12mod builder;
13mod formatter;
14pub mod highlighter;
15
16pub use crate::{
17    ast::DHallRoot,
18    builder::DHallBuilder,
19    formatter::DHallFormatter,
20    highlighter::DHallHighlighter,
21    kind::{DHallSyntaxKind, DHallToken},
22    language::DHallLanguage,
23    lexer::DHallLexer,
24};