reliability-toolkit 0.1.0

Async reliability primitives for Rust: rate limiter, circuit breaker, retry with jitter, bulkhead.
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.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",
]