cooper 0.1.1

A simple, in-process, async Actor library for Rust.
Documentation
// cooper/src/lib/rs
//
// This file is part of the `cooper-rs` library.
//
// Copyright (c) 2021, Frank Pagliughi <fpagliughi@mindspring.com>
// All Rights Reserved
//
// Licensed under the MIT license:
//   <LICENSE or http://opensource.org/licenses/MIT>
// This file may not be copied, modified, or distributed except according
// to those terms.
//
//! cooper

mod actor;
mod threaded_actor;

pub use actor::*;
pub use threaded_actor::*;