fix some warns

This commit is contained in:
🪞👃🪞 2025-09-07 23:13:19 +03:00
parent baa582b9dd
commit d6dcf137a8
4 changed files with 28 additions and 30 deletions

View file

@ -15,11 +15,9 @@ mod widget; pub use self::widget::*;
pub(crate) use self::Direction::*;
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::ops::{Add, Sub, Mul, Div};
pub(crate) use std::sync::{Arc, RwLock, atomic::{AtomicUsize, Ordering::Relaxed}};
pub(crate) use tengri_core::*;
#[cfg(feature = "dsl")] pub(crate) use ::tengri_dsl::*;
/// Draw target.
pub trait Out: Send + Sync + Sized {