[package]
edition = "2021"
rust-version = "1.85"
name = "reliability-toolkit"
version = "0.1.0"
authors = ["Miz Causevic <miz@kineticgain.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async reliability primitives for Rust: rate limiter, circuit breaker, retry with jitter, bulkhead."
homepage = "https://kineticgain.com/"
documentation = "https://docs.rs/reliability-toolkit"
readme = "README.md"
keywords = [
"reliability",
"rate-limit",
"circuit-breaker",
"retry",
"tokio",
]
categories = [
"asynchronous",
"network-programming",
"concurrency",
]
license = "MIT"
repository = "https://github.com/mizcausevic-dev/reliability-toolkit-rs"
[lib]
name = "reliability_toolkit"
path = "src/lib.rs"
[[example]]
name = "compose"
path = "examples/compose.rs"
[[test]]
name = "bulkhead"
path = "tests/bulkhead.rs"
[[test]]
name = "circuit_breaker"
path = "tests/circuit_breaker.rs"
[[test]]
name = "composition"
path = "tests/composition.rs"
[[test]]
name = "rate_limiter"
path = "tests/rate_limiter.rs"
[[test]]
name = "retry"
path = "tests/retry.rs"
[[bench]]
name = "rate_limiter"
path = "benches/rate_limiter.rs"
harness = false
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.38"
features = [
"sync",
"time",
"macros",
"rt",
]
[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]
[dev-dependencies.tokio]
version = "1.38"
features = [
"full",
"test-util",
]