polybox 0.0.2

Message-passing abstractions to make working with channels and actors a more seamless experience
Documentation
//! Message-passing abstractions to make working with channels and actors a more seamless experience.
//!
//! See [GitHub](https://github.com/jvdwrf/polybox) for more information.

#[cfg(feature = "flume")]
mod flume_inbox;
#[cfg(feature = "tokio")]
mod tokio_inbox;

pub mod inboxes {
    #[cfg(feature = "flume")]
    pub use crate::flume_inbox::FlumeInbox;

    #[cfg(feature = "tokio")]
    pub use crate::tokio_inbox::TokioInbox;
}

pub use polybox_codegen::{Interface, Message};
pub use polybox_core::*;