[package]
edition = "2021"
name = "not_redis"
version = "0.2.0"
authors = ["not_redis contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Redis-compatible in-memory data structure library for Rust"
readme = "README.md"
keywords = [
"redis",
"cache",
"in-memory",
"database",
"storage",
]
categories = [
"caching",
"database-implementations",
"data-structures",
]
license = "MIT"
repository = "https://github.com/cmgriffing/not_redis"
[lib]
name = "not_redis"
path = "src/lib.rs"
[[bin]]
name = "not_redis"
path = "src/main.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[dependencies.dashmap]
version = "6.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.0"
features = ["full"]
[dev-dependencies.criterion]
version = "0.5"
features = ["async"]
[dev-dependencies.tokio]
version = "1.0"
features = ["test-util"]