summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2019-10-24 19:10:03 +0200
committerLaurenz <laurmaedje@gmail.com>2019-10-24 19:10:03 +0200
commitb4be25e43b1ee9da924d13b7f2e8289f12bd2c3b (patch)
treea21fbec7e6907993463d57b8c75758d2014cebeb /src/lib.rs
parentecf0ff4d054f11c79ec0ddbbdf45f3dfcf9fc8d7 (diff)
Prettify peeking and rearrange syntax/parsing modules 🧶
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 0b559be9..9259ffb7 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -22,9 +22,8 @@ use toddle::query::{FontLoader, FontProvider, SharedFontLoader};
use crate::func::Scope;
use crate::layout::{layout_tree, LayoutContext, MultiLayout};
use crate::layout::{Alignment, Flow, LayoutError, LayoutResult, LayoutSpace};
-use crate::parsing::{parse, ParseContext, ParseError, ParseResult};
+use crate::syntax::{SyntaxTree, parse, ParseContext, ParseError, ParseResult};
use crate::style::{PageStyle, TextStyle};
-use crate::syntax::SyntaxTree;
#[macro_use]
mod macros;
@@ -33,7 +32,6 @@ pub mod export;
pub mod func;
pub mod layout;
pub mod library;
-pub mod parsing;
pub mod size;
pub mod style;
pub mod syntax;