simple-actor 0.2.0

Provides an Actor type that wraps a state and allows mutating it in turns using an invoke function.
Documentation
[package]
name = "simple-actor"
version = "0.2.0"
edition = "2021"

authors = ["nanocryk"]
description = """
Provides an Actor type that wraps a state and allows mutating it in turns
using an invoke function.
"""
keywords = ["asynchronous", "actor"]
repository = "https://github.com/nanocryk/simple-actor"
license = "MIT"
documentation = "https://docs.rs/simple-actor"

[dependencies]
futures = { version = "0.3.21" }

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