rustauth-redis 0.2.0

Redis integrations for RustAuth.
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"
name = "rustauth-redis"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Redis integrations for RustAuth."
homepage = "https://github.com/salasebas/rustauth"
documentation = "https://docs.rs/rustauth-redis"
readme = "README.md"
keywords = [
    "auth",
    "oauth",
    "sso",
    "scim",
    "identity",
]
categories = [
    "authentication",
    "web-programming",
]
license = "MIT"
repository = "https://github.com/salasebas/rustauth"

[features]
default = []
native-tls = ["redis/tokio-native-tls-comp"]
rustls = ["redis/tokio-rustls-comp"]

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

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

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

[dependencies.redis]
version = "0.32"
features = [
    "tokio-comp",
    "connection-manager",
    "script",
]
default-features = false

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

[dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
    "sync",
    "time",
]
default-features = false

[dev-dependencies.rustauth-core]
version = "0.2.0"
features = ["test-utils"]
default-features = false

[dev-dependencies.time]
version = "0.3"
features = [
    "formatting",
    "parsing",
    "serde",
]

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
    "sync",
    "time",
    "macros",
    "rt-multi-thread",
]
default-features = false

[lints.clippy]
expect_used = "warn"
panic = "warn"
unwrap_used = "warn"

[lints.rust]
unsafe_code = "forbid"