actix-limitation 0.5.1

Rate limiter using a fixed window counter for arbitrary keys, backed by Redis for Actix Web
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 = "2021"
rust-version = "1.68"
name = "actix-limitation"
version = "0.5.1"
authors = [
    "0xmad <0xmad@users.noreply.github.com>",
    "Rob Ede <robjtede@icloud.com>",
]
description = "Rate limiter using a fixed window counter for arbitrary keys, backed by Redis for Actix Web"
readme = "README.md"
keywords = [
    "actix-web",
    "rate-api",
    "rate-limit",
    "limitation",
]
categories = [
    "asynchronous",
    "web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/actix/actix-extras.git"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[dependencies.actix-session]
version = "0.8"
optional = true

[dependencies.actix-utils]
version = "3"

[dependencies.actix-web]
version = "4"
features = ["cookies"]
default-features = false

[dependencies.chrono]
version = "0.4"

[dependencies.derive_more]
version = "0.99.7"

[dependencies.log]
version = "0.4"

[dependencies.redis]
version = "0.23"
features = ["tokio-comp"]
default-features = false

[dependencies.time]
version = "0.3"

[features]
default = ["session"]
session = ["actix-session"]