cache-manager 0.4.0

Simple managed directory system for project-scoped caches with optional eviction policies.
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 = "cache-manager"
version = "0.4.0"
authors = ["Jeremy Harris <jeremy.harris@zenosmosis.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple managed directory system for project-scoped caches with optional eviction policies."
readme = "README.md"
keywords = [
    "cache",
    "artifact-cache",
    "eviction-policy",
    "filesystem",
    "workspace",
]
categories = [
    "development-tools",
    "caching",
    "filesystem",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jzombie/rust-cache-manager"

[features]
default = []
os-cache-dir = ["dep:directories"]
process-scoped-cache = ["dep:tempfile"]

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

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

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

[dependencies.tempfile]
version = "3.27.0"
optional = true

[dev-dependencies.tempfile]
version = "3.27.0"