1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![doc = include_str!("../README.md")]

mod _priv;
pub mod actor;
pub mod channel;
pub mod config;
pub mod errors;

pub(crate) use _priv::gen;
#[cfg(test)]
pub(crate) use _priv::test_helper::*;
pub use {
    actor::{spawn, spawn_many, spawn_one, Address, Child, ChildPool, Inbox, ShutdownPoolFut, *},
    channel::{AnyChannel, Channel, DynChannel, Rcv, Snd, *},
    config::{BackPressure, Capacity, Config, Growth, Link, *},
    errors::{
        ExitError, HaltedError, RecvError, SendError, SpawnError, TrySendError, TrySpawnError, *,
    },
};