mirror of
https://codeberg.org/unspeaker/tengri.git
synced 2026-02-21 18:49:04 +01:00
output: more big refactors
This commit is contained in:
parent
194f2f9874
commit
5e6338fad8
68 changed files with 1604 additions and 1016 deletions
|
|
@ -1,35 +0,0 @@
|
|||
#![feature(step_trait)]
|
||||
#![feature(type_alias_impl_trait)]
|
||||
#![feature(impl_trait_in_assoc_type)]
|
||||
//#![feature(non_lifetime_binders)]
|
||||
|
||||
pub(crate) use std::cell::RefCell;
|
||||
pub(crate) use std::fmt::{Debug, Display};
|
||||
pub(crate) use std::marker::PhantomData;
|
||||
pub(crate) use std::ops::{Add, Sub, Mul, Div, Deref};
|
||||
pub(crate) use std::rc::Rc;
|
||||
pub(crate) use std::sync::RwLock;
|
||||
pub(crate) use std::sync::{Arc, atomic::{AtomicUsize, Ordering::Relaxed}};
|
||||
pub(crate) use tengri_core::*;
|
||||
#[cfg(feature = "dsl")] pub(crate) use ::tengri_dsl::*;
|
||||
|
||||
mod output; pub use self::output::*;
|
||||
mod output_render; pub use self::output_render::*;
|
||||
mod output_content; pub use self::output_content::*;
|
||||
mod output_thunk; pub use self::output_thunk::*;
|
||||
mod space_area; pub use self::space_area::*;
|
||||
mod space_coordinate; pub use self::space_coordinate::*;
|
||||
mod space_direction; pub use self::space_direction::*;
|
||||
mod space_measure; pub use self::space_measure::*;
|
||||
mod space_size; pub use self::space_size::*;
|
||||
mod layout_align; pub use self::layout_align::*;
|
||||
mod layout_bsp; pub use self::layout_bsp::*;
|
||||
mod layout_cond; pub use self::layout_cond::*;
|
||||
mod layout_map; pub use self::layout_map::*;
|
||||
mod layout_stack; pub use self::layout_stack::*;
|
||||
mod layout_xy; pub use self::layout_xy::*;
|
||||
|
||||
pub(crate) use self::Direction::*;
|
||||
|
||||
#[cfg(test)] mod test;
|
||||
#[cfg(test)] pub(crate) use proptest_derive::Arbitrary;
|
||||
Loading…
Add table
Add a link
Reference in a new issue