actor12 0.0.10

A lightweight actor framework for Rust with async support
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "actor12"
version = "0.0.10"
authors = ["Stanislav Panferov <stanislav@panferov.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight actor framework for Rust with async support"
documentation = "https://docs.rs/actor12"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/s-panferov/actor12"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[lib]
name = "actor12"
path = "src/lib.rs"

[[example]]
name = "bank_account"
path = "examples/bank_account.rs"

[[example]]
name = "basic_actor"
path = "examples/basic_actor.rs"

[[example]]
name = "dynamic_dispatch"
path = "examples/dynamic_dispatch.rs"

[[example]]
name = "echo_server"
path = "examples/echo_server.rs"

[[example]]
name = "handler_pattern"
path = "examples/handler_pattern.rs"

[[example]]
name = "ping_pong"
path = "examples/ping_pong.rs"

[[example]]
name = "simple_counter"
path = "examples/simple_counter.rs"

[[example]]
name = "worker_pool"
path = "examples/worker_pool.rs"

[[test]]
name = "async_reply"
path = "tests/async_reply.rs"

[[test]]
name = "dynmsg"
path = "tests/dynmsg.rs"

[[test]]
name = "regular"
path = "tests/regular.rs"

[[bench]]
name = "overhead"
path = "benches/overhead.rs"
harness = false

[dependencies.anyhow]
version = "1.0"

[dependencies.arc-swap]
version = "1.0"

[dependencies.dashmap]
version = "6.0"

[dependencies.downcast-rs]
version = "1.2"

[dependencies.futures]
version = "0.3"

[dependencies.metrics]
version = "0.23"

[dependencies.parking_lot]
version = "0.12"

[dependencies.take-once]
version = "0.1.2"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.tracing]
version = "0.1"

[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]