distributed_rate_limiter 0.1.3

Distributed Rate Limiter
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"
name = "distributed_rate_limiter"
version = "0.1.3"
authors = ["eftychis <eftychis@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Distributed Rate Limiter"
readme = "README.md"
keywords = [
    "distributed",
    "rate-limiter",
    "credit-bucket",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/eftychis/distributed_rate_limiter"

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

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

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

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

[dependencies.crossbeam]
version = "0.8.4"
features = ["crossbeam-queue"]

[dependencies.futures]
version = "0.3"

[dependencies.rand]
version = "0.9.0"

[dependencies.reqwest]
version = "0.11"
features = ["json"]

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

[dependencies.serde_json]
version = "1.0"

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

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]