grate-limiter 0.1.1

Anticipatory rate-limit orchestration engine for multi-provider systems. Predict limits before providers enforce them.
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"
rust-version = "1.85"
name = "grate-limiter"
version = "0.1.1"
authors = ["Aditya Kasibhatla <dev.kasibhatla@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Anticipatory rate-limit orchestration engine for multi-provider systems. Predict limits before providers enforce them."
homepage = "https://github.com/dev-kasibhatla/grate-limiter"
readme = "README.md"
keywords = [
    "rate-limiter",
    "load-balancer",
    "provider",
    "quota",
    "orchestration",
]
categories = [
    "algorithms",
    "network-programming",
    "concurrency",
]
license = "Apache-2.0"
repository = "https://github.com/dev-kasibhatla/grate-limiter"
resolver = "2"

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

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

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

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

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

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

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

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

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

[dependencies.dashmap]
version = "6"

[dependencies.parking_lot]
version = "0.12"

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

[dependencies.serde_json]
version = "1"

[dependencies.smallvec]
version = "1"
features = ["serde"]

[dependencies.thiserror]
version = "2"

[dependencies.tracing]
version = "0.1"

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

[dev-dependencies.proptest]
version = "1"