ash-flare 2.3.3

Fault-tolerant supervision trees for Rust with distributed capabilities inspired by Erlang/OTP
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"
rust-version = "1.88"
name = "ash-flare"
version = "2.3.3"
authors = ["Giorgos Ntemiris <ntemirisgiorgos3@gmail.com>"]
build = false
exclude = [
    "*.sh",
    "*.cast",
    "architecture.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fault-tolerant supervision trees for Rust with distributed capabilities inspired by Erlang/OTP"
homepage = "https://github.com/ashforge-rs/ash-flare"
documentation = "https://docs.rs/ash-flare"
readme = "README.md"
keywords = [
    "supervisor",
    "fault-tolerance",
    "resilience",
    "distributed",
]
categories = [
    "asynchronous",
    "concurrency",
]
license = "Apache-2.0"
repository = "https://github.com/ashforge-rs/ash-flare"

[features]
default = []
python = ["pyo3/extension-module"]

[lib]
name = "ash_flare"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.dashmap]
version = "6.1"

[dependencies.pyo3]
version = "0.28.2"
features = ["abi3-py39"]

[dependencies.pyo3-async-runtimes]
version = "0.28"
features = ["tokio-runtime"]

[dependencies.pythonize]
version = "0.28"

[dependencies.rand]
version = "0.10"

[dependencies.rkyv]
version = "0.8"
features = ["alloc"]

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.time]
version = "0.3.47"

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

[dependencies.tracing]
version = "0.1"

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