async-actor 0.1.0

A simple actor framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "async-actor"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/AmitPr/async-actor"
description = "A simple actor framework for Rust"
license = "MIT"

[dependencies]
async-channel = "2.3.1"
async-oneshot-channel = "0.1.8"
either = "1"
pin-project-lite = "0.2"

[dev-dependencies]
tokio = { version = "1.41.1", features = ["full"] }