protoactor 0.1.0

ProtoActor implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! # ProtoActor
//!
//! This is a Rust implementation of the [ProtoActor](https://github.com/asynkron/protoactor-dotnet)
//! project.


#[cfg(feature = "remote")]
pub use protoactor_remote as remote;
#[cfg(feature = "cluster")]
pub use protoactor_cluster as cluster;
#[cfg(feature = "persistence")]
pub use protoactor_persistence as persistence;