rskit-cache 0.2.0-alpha.2

Cache abstraction with explicit store registration and local adapters
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"
rust-version = "1.91"
name = "rskit-cache"
version = "0.2.0-alpha.2"
authors = ["kbukum contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cache abstraction with explicit store registration and local adapters"
homepage = "https://github.com/kbukum/rskit"
documentation = "https://docs.rs/rskit-cache"
readme = "README.md"
keywords = [
    "cache",
    "memory",
    "store",
]
categories = ["caching"]
license = "MIT"
repository = "https://github.com/kbukum/rskit"
resolver = "2"

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

[features]
default = []
fs = [
    "dep:rskit-util",
    "dep:rskit-fs",
    "rskit-fs/async",
]

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

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

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

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

[dependencies.parking_lot]
version = "0.12"

[dependencies.rskit-errors]
version = "0.2.0-alpha.1"

[dependencies.rskit-fs]
version = "0.2.0-alpha.1"
optional = true
default-features = false

[dependencies.rskit-util]
version = "0.2.0-alpha.1"
optional = true

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

[dependencies.serde_json]
version = "1"

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

[dev-dependencies.tokio]
version = "1"
features = [
    "full",
    "test-util",
]