1#![deny(clippy::future_not_send)]
10
11#[cfg(feature = "tokio")]
12mod tokio;
13
14#[cfg(feature = "tokio")]
15pub use crate::tokio::{AcTokio, AcTokioRuntime, TokioJoinHandle};
16
17mod abort;
18mod acto_cell;
19mod acto_handle;
20mod acto_ref;
21mod messages;
22mod runtime;
23mod snd_rcv;
24mod supervision_ref;
25pub mod variable;
26
27pub use abort::{ActoAborted, PanicInfo, PanicOrAbort};
28pub use acto_cell::ActoCell;
29pub use acto_handle::{ActoHandle, MappedActoHandle};
30pub use acto_ref::{ActoId, ActoRef};
31pub use messages::{ActoInput, ActoMsgSuper};
32pub use runtime::{ActoRuntime, MailboxSize};
33pub use snd_rcv::{Receiver, Sender};
34pub use supervision_ref::SupervisionRef;
35
36#[cfg(test)]
37mod tests;