ic-bn-lib 0.1.18

Internet Computer Boundary Nodes shared modules
Documentation
1
2
3
4
5
6
7
8
pub mod ewma;
pub mod little;
pub mod sharded;
pub mod system;

use std::{future::Future, pin::Pin};

pub(crate) type BoxFuture<T> = Pin<Box<dyn Future<Output = T> + Send>>;