# xactor **Repository Path**: rustup/xactor ## Basic Information - **Project Name**: xactor - **Description**: Xactor is a rust actors framework based on async-std. Actor communication in a local context Using Futures for asynchronous message handling Typed messages (No Any type). Generic messages are allowed - **Primary Language**: Rust - **License**: MIT - **Default Branch**: master - **Homepage**: https://github.com/sunli829/xactor - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-02-08 - **Last Updated**: 2023-02-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Xactor is a rust actors framework based on async-std
## Documentation * [GitHub repository](https://github.com/sunli829/xactor) * [Cargo package](https://crates.io/crates/xactor) * Minimum supported Rust version: 1.39 or later ## Features * Async actors. * Actor communication in a local context. * Using Futures for asynchronous message handling. * Typed messages (No `Any` type). Generic messages are allowed. ## Examples ```rust use xactor::*; #[message(result = "String")] struct ToUppercase(String); struct MyActor; impl Actor for MyActor {} #[async_trait::async_trait] impl Handler