put output/view behind dsl feature

This commit is contained in:
🪞👃🪞 2025-03-16 23:34:34 +02:00
parent 71dead5150
commit 6ee0147f43

View file

@ -13,12 +13,13 @@ mod op_iter; pub use self::op_iter::*;
mod op_align; pub use self::op_align::*; mod op_align; pub use self::op_align::*;
mod op_bsp; pub use self::op_bsp::*; mod op_bsp; pub use self::op_bsp::*;
mod op_transform; pub use self::op_transform::*; mod op_transform; pub use self::op_transform::*;
mod view; pub use self::view::*;
pub(crate) use std::marker::PhantomData; pub(crate) use std::marker::PhantomData;
pub(crate) use std::error::Error; pub(crate) use std::error::Error;
#[cfg(feature = "dsl")] pub(crate) use ::tengri_dsl::*; #[cfg(feature = "dsl")] pub(crate) use ::tengri_dsl::*;
#[cfg(feature = "dsl")] mod view;
#[cfg(feature = "dsl")] pub use self::view::*;
/// Standard result type. /// Standard result type.
pub type Usually<T> = Result<T, Box<dyn Error>>; pub type Usually<T> = Result<T, Box<dyn Error>>;