//! This library provides an implementation of the actor model. The goal of this library is to
//! enable users to create actors, which can dynamically change their behavior during runtime.
//! This is achieved by internally working with trait objects and the Any trait.
//! Further a testing framework is supplied which can be used to generate test actors in an easy
//! and typesafe way.
//! For examples check out the provided examples in the [repository of the library](https://github.com/hopfii/aector).
extern crate core;
pub use Addr;
pub use Message;