diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-03-01 16:30:58 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-03-01 16:33:28 +0100 |
| commit | 6ab7760822ccd24b4ef126d4737d41f1be15fe19 (patch) | |
| tree | 49905f91d292ceefe4f9878ead43f117c4b1fec0 /library/src/math/mod.rs | |
| parent | ab841188e3d2687ee8f436336e6fde337985a83e (diff) | |
Split up `model` module
Diffstat (limited to 'library/src/math/mod.rs')
| -rw-r--r-- | library/src/math/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/src/math/mod.rs b/library/src/math/mod.rs index c455d106..d73b1769 100644 --- a/library/src/math/mod.rs +++ b/library/src/math/mod.rs @@ -29,9 +29,9 @@ pub use self::style::*; pub use self::underover::*; use ttf_parser::{GlyphId, Rect}; -use typst::font::Font; -use typst::font::FontWeight; -use typst::model::{Guard, Module, Scope, SequenceNode, StyledNode}; +use typst::eval::{Module, Scope}; +use typst::font::{Font, FontWeight}; +use typst::model::{Guard, SequenceNode, StyledNode}; use unicode_math_class::MathClass; use self::ctx::*; |
