summaryrefslogtreecommitdiff
path: root/library/src/prelude.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/src/prelude.rs')
-rw-r--r--library/src/prelude.rs42
1 files changed, 0 insertions, 42 deletions
diff --git a/library/src/prelude.rs b/library/src/prelude.rs
deleted file mode 100644
index c720e770..00000000
--- a/library/src/prelude.rs
+++ /dev/null
@@ -1,42 +0,0 @@
-//! Helpful imports for creating library functionality.
-
-#[doc(no_inline)]
-pub use std::fmt::{self, Debug, Formatter};
-#[doc(no_inline)]
-pub use std::num::NonZeroUsize;
-
-#[doc(no_inline)]
-pub use comemo::{Track, Tracked, TrackedMut};
-#[doc(no_inline)]
-pub use ecow::{eco_format, EcoString};
-#[doc(no_inline)]
-pub use typst::diag::{bail, error, At, Hint, SourceResult, StrResult};
-#[doc(no_inline)]
-pub use typst::doc::*;
-#[doc(no_inline)]
-pub use typst::eval::{
- array, cast, dict, format_str, func, Args, Array, AutoValue, Cast, Dict, FromValue,
- Func, IntoValue, Never, NoneValue, Scope, Str, Symbol, Type, Value, Vm,
-};
-#[doc(no_inline)]
-pub use typst::file::FileId;
-#[doc(no_inline)]
-pub use typst::geom::*;
-#[doc(no_inline)]
-pub use typst::model::{
- element, Behave, Behaviour, Construct, Content, ElemFunc, Element, Finalize, Fold,
- Introspector, Label, Locatable, LocatableSelector, Location, Locator, MetaElem,
- PlainText, Resolve, Selector, Set, Show, StyleChain, StyleVec, Styles, Synthesize,
- Unlabellable, Vt,
-};
-#[doc(no_inline)]
-pub use typst::syntax::{Span, Spanned};
-#[doc(no_inline)]
-pub use typst::util::NonZeroExt;
-#[doc(no_inline)]
-pub use typst::World;
-
-#[doc(no_inline)]
-pub use crate::layout::{Fragment, Layout, Regions};
-#[doc(no_inline)]
-pub use crate::shared::{ContentExt, StylesExt};