watermelon 0.4.4

High level actor based implementation NATS Core and NATS Jetstream client implementation
Documentation
1
2
3
4
use std::{future::Future, pin::Pin};

/// An alternative to [`futures_core::future::BoxFuture`] that is also `Sync`
pub(crate) type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + Sync + 'a>>;