mirror of
https://codeberg.org/unspeaker/tengri.git
synced 2025-12-06 03:36:42 +01:00
put output/view behind dsl feature
This commit is contained in:
parent
71dead5150
commit
6ee0147f43
1 changed files with 2 additions and 1 deletions
|
|
@ -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>>;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue