#![deny(clippy::arithmetic_side_effects)]
#![deny(clippy::cast_possible_truncation)]
#![deny(unused_crate_dependencies)]
#![deny(missing_docs)]
#![deny(warnings)]
mod service;
mod state;
mod sync;
pub mod stream {
#[doc(no_inline)]
pub use futures::stream::{
pending,
unfold,
Stream,
};
pub type BoxStream<T> =
core::pin::Pin<Box<dyn Stream<Item = T> + Send + Sync + 'static>>;
pub type BoxFuture<'a, T> =
core::pin::Pin<Box<dyn futures::Future<Output = T> + Send + Sync + 'a>>;
pub trait IntoBoxStream: Stream {
fn into_boxed(self) -> BoxStream<Self::Item>
where
Self: Sized + Send + Sync + 'static,
{
Box::pin(self)
}
}
impl<S> IntoBoxStream for S where S: Stream + Send + Sync + 'static {}
}
pub use service::{
EmptyShared,
RunnableService,
RunnableTask,
Service,
ServiceRunner,
};
pub use state::{
State,
StateWatcher,
};
pub use sync::{
Shared,
SharedMutex,
};