tower-http-cache 0.6.1

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]
# Every entry here is a licence actually present in the resolved graph. When a
# new dependency introduces one that is not listed, `cargo deny` fails and the
# licence gets reviewed before it is added -- that gate is the point of the
# list, so entries are not kept "just in case".
allow = [
    "MIT",
    "Apache-2.0",
    "Apache-2.0 WITH LLVM-exception",
    "BSD-3-Clause",
    "Unicode-3.0",
    "Zlib",
    # xxhash-rust, via redis 1.6. Boost Software License 1.0 -- OSI approved,
    # FSF Free/Libre, permissive, compatible with this crate's MIT OR
    # Apache-2.0. redis 0.32.7 had no xxhash-rust dependency.
    "BSL-1.0",
]

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