warehouse 0.1.0

A unified ergonomic caching layer for arbitrary Rust data
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"
rust-version = "1.95"
name = "warehouse"
version = "0.1.0"
authors = ["TPhoenixyz"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A unified ergonomic caching layer for arbitrary Rust data"
readme = "README.md"
keywords = [
    "cache",
    "storage",
    "persistence",
    "versioning",
]
categories = [
    "caching",
    "data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/TPhoenixyz/warehouse"

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

[features]
async = ["dep:tokio"]
default = ["full"]
file-io = [
    "dep:bincode-next",
    "dep:directories",
    "dep:serde",
]
full = [
    "async",
    "file-io",
]

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

[dependencies.bincode-next]
version = "2.1.0"
optional = true

[dependencies.directories]
version = "6.0.0"
optional = true

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

[dependencies.thiserror]
version = "2.0.18"

[dependencies.tokio]
version = "1.52.1"
features = ["full"]
optional = true