rateflow 0.1.0

A declarative, flexible, and high-performance rate limiting library for Rust
Documentation
[dependencies.parking_lot]
version = "0.12"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
features = ["sync", "time"]
version = "1.35"

[dev-dependencies.tokio]
features = ["full", "test-util"]
version = "1.35"

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

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

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

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

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

[package]
authors = ["M1tsumi"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["web-programming", "asynchronous"]
description = "A declarative, flexible, and high-performance rate limiting library for Rust"
documentation = "https://docs.rs/rateflow"
edition = "2021"
exclude = ["DONOTCOMMIT.gitignore/*", "PROJECT_SUMMARY.md", "GITHUB_SETUP.md", "PUSH_READY.md", "RELEASE.md"]
homepage = "https://github.com/M1tsumi/RateFlow"
keywords = ["rate-limiting", "api", "throttle", "limiter", "middleware"]
license = "MIT"
name = "rateflow"
readme = "README.md"
repository = "https://github.com/M1tsumi/RateFlow"
version = "0.1.0"

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