tower-http-cache 0.6.0

Tower-compatible caching layer with pluggable backends (in-memory, Redis, and more)
Documentation
# cargo-deny configuration. Run locally with `cargo deny check`.

[graph]
all-features = true

[advisories]
yanked = "deny"
# Empty. The four suppressions carried through 0.5.x are gone: RUSTSEC-2025-0141
# with `bincode` (0.6.0 replaced it with postcard and a hand-written legacy
# reader), and RUSTSEC-2026-0258, RUSTSEC-2025-0057 and RUSTSEC-2025-0134 with
# the memcached backend, which took `async-memcached` -> `toxiproxy_rust` ->
# `reqwest 0.11` out of the graph. Keep it empty: a permanently-ignored advisory
# trains people to ignore advisories.
ignore = []

[bans]
multiple-versions = "warn"
wildcards = "deny"
skip = []

[licenses]
allow = [
    "MIT",
    "Apache-2.0",
    "Apache-2.0 WITH LLVM-exception",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "ISC",
    "Unicode-3.0",
    # notify (CC0-1.0) and tiny-keccak via ahash/const-random. CC0-1.0 is a
    # public-domain dedication: permissive, no obligations, FSF Free/Libre.
    "CC0-1.0",
    # webpki-roots ships the Mozilla CA bundle under CDLA-Permissive-2.0.
    "CDLA-Permissive-2.0",
    "Zlib",
    # redis 1.6 depends on xxhash-rust, which is BSL-1.0 (Boost Software
    # License 1.0) -- OSI approved, FSF Free/Libre, permissive, and compatible
    # with this crate's MIT OR Apache-2.0. Arrived with the redis 0.32 -> 1.x
    # upgrade; redis 0.32.7 had no xxhash-rust dependency.
    "BSL-1.0",
]

[sources]
unknown-registry = "deny"
unknown-git = "deny"