governor 0.3.2

A rate-limiting implementation in Rust
Documentation
[[bench]]
harness = false
name = "governor_criterion_benches"
[badges.circle-ci]
branch = "master"
repository = "antifuchs/governor"

[badges.maintenance]
status = "actively-developed"
[dependencies.dashmap]
optional = true
version = "4.0.2"

[dependencies.futures]
optional = true
version = "0.3.5"

[dependencies.futures-timer]
optional = true
version = "3.0.2"

[dependencies.no-std-compat]
features = ["alloc", "compat_hash"]
version = "0.4.0"

[dependencies.nonzero_ext]
default-features = false
version = "0.2.0"

[dependencies.parking_lot]
version = "0.11.0"

[dependencies.quanta]
optional = true
version = "0.4.1"

[dependencies.rand]
optional = true
version = "0.8.0"

[dependencies.smallvec]
version = "1.6.1"
[dev-dependencies.criterion]
version = "0.3.2"

[dev-dependencies.crossbeam]
version = "0.8.0"

[dev-dependencies.futures]
version = "0.3.5"

[dev-dependencies.libc]
version = "0.2.70"

[dev-dependencies.more-asserts]
version = "0.2.1"

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

[dev-dependencies.tynm]
version = "0.1.4"

[features]
default = ["std", "dashmap", "jitter", "quanta"]
jitter = ["rand"]
no_std = []
std = ["no-std-compat/std", "nonzero_ext/std", "futures-timer", "futures"]

[package]
authors = ["Andreas Fuchs <asf@boinkor.net>"]
autobenches = false
categories = ["algorithms", "network-programming", "concurrency", "no-std"]
description = "A rate-limiting implementation in Rust"
documentation = "https://docs.rs/governor"
edition = "2018"
homepage = "https://github.com/antifuchs/governor"
keywords = ["rate-limiting", "rate-limit", "no_std", "gcra"]
license = "MIT"
name = "governor"
readme = "README.md"
repository = "https://github.com/antifuchs/governor.git"
version = "0.3.2"
[package.metadata.template_ci.additional_matrix_entries.no_std_nightly]
commandline = "cargo +nightly test --no-default-features --features no_std"
run = true
version = "nightly"

[package.metadata.template_ci.additional_matrix_entries.no_std_stable]
commandline = "cargo test --no-default-features --features no_std"
run = true
version = "stable"

[package.metadata.template_ci.bench]
run = true
version = "nightly"

[package.metadata.template_ci.clippy]
run = false
version = "nightly"