governor 0.1.1

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

[badges.maintenance]
status = "actively-developed"
[dependencies.evmap]
optional = true
version = "6.0.0"

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

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

[dependencies.parking_lot]
optional = true
version = "0.9.0"

[dependencies.rand]
version = "0.7.2"
[dev-dependencies.criterion]
version = "0.2.11"

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

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

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

[features]
default = ["std"]
no_std = []
std = ["parking_lot", "evmap", "nonzero_ext/std", "futures-timer"]

[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.1.1"
[package.metadata.release]
dev-version-ext = "dev"
pre-release-commit-message = "Release {{version}} 🎉🎉"
pro-release-commit-message = "Start next development iteration {{version}}"
sign-commit = false
tag-message = "Release {{prefix}}{{version}}"
upload-doc = false
[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 = "stable"