sqlx-cache 0.1.0

Caching system built on top of SQLX designed for efficient storage and retrieval of entities in a database.
Documentation
[dependencies.dashmap]
version = "6.1.0"

[dependencies.sqlx]
version = "0.8.2"

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

[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"

[dev-dependencies.tokio]
features = ["rt-multi-thread", "macros"]
version = "1.42.0"

[features]
mysql = ["sqlx/mysql"]
postgres = ["sqlx/postgres"]
runtime-async-std = ["sqlx/runtime-async-std"]
runtime-tokio = ["sqlx/runtime-tokio"]
sqlite = ["sqlx/sqlite"]
tokio-postgres = ["runtime-tokio", "postgres"]

[lib]
name = "lib"
path = "src/lib/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"]
description = "Caching system built on top of SQLX designed for efficient storage and retrieval of entities in a database."
documentation = "https://docs.rs/sqlx-cache"
edition = "2021"
keywords = ["sqlx", "cache", "async", "postgres", "mysql"]
license = "MIT OR Apache-2.0"
name = "sqlx-cache"
readme = "README.md"
repository = "https://github.com/manuelgdlvh/sqlx-cache"
version = "0.1.0"

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