[dependencies.indexmap]
version = "2.0"
[dependencies.regex]
optional = true
version = "1.10"
[dev-dependencies.regex]
version = "1.10"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "file_cache"
path = "examples/file_cache.rs"
[[example]]
name = "regex_matching"
path = "examples/regex_matching.rs"
required-features = ["regex_support"]
[features]
default = []
regex_support = ["regex"]
[lib]
name = "simple_cacher"
path = "src/lib.rs"
[package]
authors = ["prizzledev"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["caching", "data-structures", "memory-management"]
description = "A high-performance, flexible caching library with custom matching capabilities and automatic expiration"
documentation = "https://docs.rs/simple-cacher"
edition = "2021"
exclude = ["/.github/", "/benches/", "/examples/target/", "*.log"]
homepage = "https://github.com/prizzledev/simple-cacher"
keywords = ["cache", "caching", "memory", "performance", "indexmap"]
license = "MIT"
name = "simple-cacher"
readme = "README.md"
repository = "https://github.com/prizzledev/simple-cacher"
rust-version = "1.70"
version = "0.1.1"