sids 1.0.3

An actor-model concurrency framework providing abstraction over async and blocking actors.
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"
rust-version = "1.83.0"
name = "sids"
version = "1.0.3"
authors = ["Ryan Deschamps <rdeschamps@conestogac.on.ca>"]
build = false
exclude = ["/architecture"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An actor-model concurrency framework providing abstraction over async and blocking actors."
readme = "README.md"
keywords = [
    "actor-model",
    "concurrency",
    "tokio",
]
categories = [
    "asynchronous",
    "concurrency",
]
license = "Apache-2.0"
repository = "https://github.com/professor-greebie/sids"

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

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

[[bin]]
name = "sids"
path = "src/main.rs"

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

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

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

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

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

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

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

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

[[bench]]
name = "streaming_benchmarks"
path = "benches/streaming_benchmarks.rs"
harness = false
required-features = ["streaming"]

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

[dependencies.env_logger]
version = "0.11.10"

[dependencies.log]
version = "0.4"
features = ["kv"]

[dependencies.mockall]
version = "0.14.0"

[dependencies.reqwest]
version = "0.13"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

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

[dependencies.toml]
version = "=1.0.4"

[dependencies.trait-variant]
version = "0.1.2"

[dev-dependencies.criterion]
version = "0.8"
features = [
    "html_reports",
    "async_tokio",
]

[dev-dependencies.rand]
version = "0.10"