#[cfg(all(feature = "mimalloc", not(target_arch = "wasm32")))]
#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
pub mod ack;
pub mod actor;
pub mod adapters;
mod dup;
pub mod mailbox;
#[doc(hidden)]
pub mod message; pub mod metrics;
mod tokio_spawn;
mod tokio_time;
#[cfg(not(target_arch = "wasm32"))]
pub mod migration;
mod node;
mod router;
#[cfg(feature = "webrtc")]
mod stun;
pub mod types;
mod utils;
pub use dup::Dup;
pub mod sea;
pub use node::{Config, Node};
pub use types::Value;
#[cfg(target_arch = "wasm32")]
pub mod wasm;
#[cfg(all(target_arch = "wasm32", test))]
mod wasm_tests;
#[cfg(not(target_arch = "wasm32"))]
#[doc = include_str!("../README.md")]
#[cfg(doctest)]
pub struct ReadmeDoctests;