sids 1.0.3

An actor-model concurrency framework providing abstraction over async and blocking actors.
Documentation
[package]
name = "sids"
version = "1.0.3"
edition = "2021"
rust-version = "1.83.0"
authors = ["Ryan Deschamps <rdeschamps@conestogac.on.ca>"]
repository = "https://github.com/professor-greebie/sids"
description = "An actor-model concurrency framework providing abstraction over async and blocking actors."
keywords = ["actor-model", "concurrency", "tokio"]
categories = ["asynchronous", "concurrency"]
exclude = ["/architecture"]
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["full"]}
trait-variant = "0.1.2"
log = {version = "0.4", features = ["kv"]}
env_logger = "0.11.10"
mockall = "0.14.0"
reqwest = { version = "0.13", optional = true }
serde = { version = "1", features = ["derive"] }
toml = "=1.0.4"
serde_json = "1.0"
async-trait = "0.1"

[features]
streaming = ["reqwest"]
visualize = []

[dev-dependencies]
criterion = { version = "0.8", features = ["html_reports", "async_tokio"] }
rand = "0.10"

[[bench]]
name = "actor_benchmarks"
harness = false

[[bench]]
name = "streaming_benchmarks"
harness = false
required-features = ["streaming"]