wae-cache 0.0.2

WAE Cache - 缓存服务抽象层,支持内存缓存
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 = "2024"
name = "wae-cache"
version = "0.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "WAE Cache - 缓存服务抽象层,支持内存缓存"
homepage = "https://github.com/oovm/wae/tree/main/backends/wae-cache"
documentation = "https://docs.rs/wae-cache"
readme = "README.md"
keywords = [
    "cache",
    "memory",
    "async",
]
categories = [
    "caching",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/oovm/wae/tree/main/backends/wae-cache"
resolver = "2"

[features]
default = []
redis = [
    "dep:redis",
    "dep:deadpool-redis",
]

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

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

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

[dependencies.async-trait]
version = "0.1.89"

[dependencies.deadpool-redis]
version = "0.23"
optional = true

[dependencies.redis]
version = "1.0.5"
features = [
    "tokio-comp",
    "tokio-rustls-comp",
]
optional = true

[dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.149"

[dependencies.tokio]
version = "1.50.0"
features = ["full"]

[dependencies.tracing]
version = "0.1.44"
features = [
    "std",
    "attributes",
    "log",
]

[dependencies.wae-types]
version = "0.0.2"