hydra 0.1.40

A framework for writing fault tolerant, highly scalable applications with the Rust programming language.
Documentation
[dependencies.arc-swap]
version = "1.7"

[dependencies.bincode]
version = "2.0"

[dependencies.bitflags]
version = "2.9"

[dependencies.bytes]
default-features = false
version = "1.0"

[dependencies.dashmap]
version = "6.0.1"

[dependencies.flume]
version = "0.11"

[dependencies.futures-util]
default-features = false
features = ["std", "sink"]
version = "0.3"

[dependencies.hmac]
version = "0.12"

[dependencies.hydra-macros]
optional = true
version = "0.1.39"

[dependencies.memory-stats]
optional = true
version = "1.2"

[dependencies.once_cell]
version = "1.21"

[dependencies.pin-project-lite]
version = "0.2"

[dependencies.pingora-timeout]
version = "0.6"

[dependencies.rmp-serde]
version = "1.3"

[dependencies.serde]
default-features = false
features = ["derive", "std"]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.tokio]
default-features = false
features = ["rt", "rt-multi-thread", "net", "sync", "time", "macros", "signal"]
version = "1.0"

[dependencies.tokio-util]
default-features = false
features = ["codec"]
version = "0.7"

[dependencies.tracing]
default-features = false
features = ["std"]
optional = true
version = "0.1"

[dependencies.tracing-subscriber]
optional = true
version = "0.3"

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

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

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

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

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

[features]
console = ["dep:memory-stats"]
default = ["macros", "tracing"]
macros = ["dep:hydra-macros"]
tracing = ["dep:tracing", "dep:tracing-subscriber"]

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "concurrency", "network-programming"]
description = "A framework for writing fault tolerant, highly scalable applications with the Rust programming language."
edition = "2024"
keywords = ["erlang", "elixir", "actors"]
license = "MIT"
name = "hydra"
readme = "README.md"
repository = "https://github.com/dtzxporter/hydra"
resolver = "2"
version = "0.1.40"

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

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

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