Tidy up some imports
This commit is contained in:
parent
1ef6ba7f41
commit
36c7301608
@ -6,7 +6,8 @@ use std::path::PathBuf;
|
||||
use semver::Version;
|
||||
use serde::Deserialize;
|
||||
use tempfile::NamedTempFile;
|
||||
use typst::{diag::bail, diag::StrResult, eval::eco_format};
|
||||
use typst::diag::{bail, StrResult};
|
||||
use typst::eval::eco_format;
|
||||
use xz2::bufread::XzDecoder;
|
||||
use zip::ZipArchive;
|
||||
|
||||
|
@ -5,8 +5,7 @@ use if_chain::if_chain;
|
||||
use typst::doc::Frame;
|
||||
use typst::eval::{repr, CapturesVisitor, CastInfo, Repr, Tracer, Value};
|
||||
use typst::geom::{round_2, Length, Numeric};
|
||||
use typst::syntax::ast;
|
||||
use typst::syntax::{LinkedNode, Source, SyntaxKind};
|
||||
use typst::syntax::{ast, LinkedNode, Source, SyntaxKind};
|
||||
use typst::World;
|
||||
|
||||
use crate::analyze::analyze_labels;
|
||||
|
@ -1,5 +1,4 @@
|
||||
use crate::layout::GridLayouter;
|
||||
use crate::layout::{BlockElem, ParElem, Sizing, Spacing};
|
||||
use crate::layout::{BlockElem, GridLayouter, ParElem, Sizing, Spacing};
|
||||
use crate::prelude::*;
|
||||
use crate::text::TextElem;
|
||||
|
||||
|
@ -46,9 +46,9 @@ use self::fragment::*;
|
||||
use self::row::*;
|
||||
use self::spacing::*;
|
||||
use crate::layout::{AlignElem, BoxElem, HElem, ParElem, Spacing};
|
||||
use crate::meta::Supplement;
|
||||
use crate::meta::{
|
||||
Count, Counter, CounterUpdate, LocalNameIn, Numbering, Outlinable, Refable,
|
||||
Supplement,
|
||||
};
|
||||
use crate::prelude::*;
|
||||
use crate::shared::BehavedBuilder;
|
||||
|
@ -1,4 +1,5 @@
|
||||
use icu_properties::{maps::CodePointMapData, LineBreak};
|
||||
use icu_properties::maps::CodePointMapData;
|
||||
use icu_properties::LineBreak;
|
||||
use icu_provider::AsDeserializingBufferProvider;
|
||||
use icu_provider_adapters::fork::ForkByKeyProvider;
|
||||
use icu_provider_blob::BlobDataProvider;
|
||||
|
@ -2,10 +2,9 @@ use std::f32::consts::{PI, TAU};
|
||||
use std::sync::Arc;
|
||||
|
||||
use ecow::{eco_format, EcoString};
|
||||
use pdf_writer::types::FunctionShadingType;
|
||||
use pdf_writer::types::{ColorSpaceOperand, FunctionShadingType};
|
||||
use pdf_writer::writers::StreamShadingType;
|
||||
use pdf_writer::{types::ColorSpaceOperand, Name};
|
||||
use pdf_writer::{Filter, Finish, Ref};
|
||||
use pdf_writer::{Filter, Finish, Name, Ref};
|
||||
use typst::geom::{
|
||||
Abs, Angle, Color, ColorSpace, ConicGradient, Gradient, Numeric, Point, Quadrant,
|
||||
Ratio, Relative, Transform, WeightedColor,
|
||||
|
@ -8,8 +8,7 @@ use std::sync::Arc;
|
||||
use comemo::Prehashed;
|
||||
|
||||
use crate::reparser::reparse;
|
||||
use crate::VirtualPath;
|
||||
use crate::{is_newline, parse, FileId, LinkedNode, Span, SyntaxNode};
|
||||
use crate::{is_newline, parse, FileId, LinkedNode, Span, SyntaxNode, VirtualPath};
|
||||
|
||||
/// A source file.
|
||||
///
|
||||
|
@ -12,11 +12,10 @@ use siphasher::sip128::{Hasher128, SipHasher13};
|
||||
|
||||
use crate::diag::StrResult;
|
||||
use crate::eval::{
|
||||
fields, ops, repr, Args, Array, AutoValue, Bytes, CastInfo, Content, Dict, Duration,
|
||||
FromValue, Func, IntoValue, Module, NativeType, NoneValue, Plugin, Reflect, Repr,
|
||||
Scope, Str, Symbol, Type, Version,
|
||||
fields, item, ops, repr, Args, Array, AutoValue, Bytes, CastInfo, Content, Datetime,
|
||||
Dict, Duration, FromValue, Func, IntoValue, Module, NativeType, NoneValue, Plugin,
|
||||
Reflect, Repr, Scope, Str, Symbol, Type, Version,
|
||||
};
|
||||
use crate::eval::{item, Datetime};
|
||||
use crate::geom::{Abs, Angle, Color, Em, Fr, Gradient, Length, Ratio, Rel};
|
||||
use crate::model::{Label, Styles};
|
||||
use crate::syntax::{ast, Span};
|
||||
|
Loading…
x
Reference in New Issue
Block a user