remcached 0.3.0

Caching system designed for efficient storage and retrieval of entities from remote repositories (REST APIs, Database, ...etc)
Documentation
[dependencies.anyhow]
version = "1.0.95"

[dependencies.dashmap]
version = "6.1.0"

[dependencies.log]
version = "0.4.22"

[dependencies.thiserror]
version = "2.0.9"

[dependencies.tokio]
optional = true
version = "1.42.0"

[dev-dependencies.awaitility]
version = "0.3.1"

[dev-dependencies.ctor]
version = "0.2.8"

[dev-dependencies.env_logger]
version = "0.11.6"

[dev-dependencies.mockall]
version = "0.13.0"

[dev-dependencies.rstest]
version = "0.22.0"

[dev-dependencies.rstest_reuse]
version = "0.7.0"

[dev-dependencies.sqlx]
features = ["runtime-tokio", "postgres"]
version = "0.8.2"

[dev-dependencies.testcontainers]
features = ["blocking"]
version = "0.21.1"

[features]
tokio = ["dep:tokio"]

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

[package]
authors = ["Manuel Garcia de la Vega Hoyo <manuelgdlvh@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["database", "asynchronous", "caching"]
description = "Caching system designed for efficient storage and retrieval of entities from remote repositories (REST APIs, Database, ...etc)"
documentation = "https://docs.rs/remcached"
edition = "2021"
keywords = ["database", "caching", "async", "repository", "memory"]
license = "MIT OR Apache-2.0"
name = "remcached"
readme = "README.md"
repository = "https://github.com/manuelgdlvh/remcached"
version = "0.3.0"

[[test]]
name = "integration_tests"
path = "tests/integration/mod.rs"
required-features = ["tokio"]