theta 0.1.0-alpha.46

An Rust Actor Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Remote actor communication over peer-to-peer networks.
//!
//! This module enables distributed actor systems using the [iroh] P2P networking library.
//! Actors can communicate across network boundaries as if they were local.
//!
//! [iroh]: https://iroh.computer/

pub mod base;
pub mod network;
pub mod peer;
pub mod serde;