serviceless 0.4.2

An simple actor model in rust, like actix
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 = "2021"
name = "serviceless"
version = "0.4.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An simple actor model in rust, like actix"
readme = "README.md"
license = "MIT"

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

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

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

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

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

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

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

[dependencies.async-trait]
version = "0.1.80"

[dependencies.futures-core]
version = "0.3"

[dependencies.futures-util]
version = "0.3"

[dependencies.log]
version = "0.4.20"

[dependencies.service-channel]
version = "^0.1.2"

[dependencies.thiserror]
version = "2.0.17"

[dev-dependencies.tokio]
version = "1.37.0"
features = [
    "rt",
    "sync",
    "macros",
    "rt-multi-thread",
    "time",
]