[[bench]]
harness = false
name = "performance"
path = "benches/performance.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-stream]
version = "0.3"
[dependencies.ciborium]
version = "0.2.2"
[dependencies.crossbeam-epoch]
version = "0.9"
[dependencies.crossbeam-utils]
version = "0.8"
[dependencies.dashmap]
version = "6.1.0"
[dependencies.fastrand]
version = "2"
[dependencies.futures]
version = "0.3"
[dependencies.rustix]
features = ["fs"]
version = "1.1.2"
[dependencies.serde]
features = ["derive", "rc"]
version = "1.0.228"
[dependencies.tokio]
features = ["rt-multi-thread", "macros", "sync", "time"]
version = "1"
[dev-dependencies.criterion]
features = ["async_tokio"]
version = "0.7.0"
[dev-dependencies.rand]
version = "0.9.2"
[dev-dependencies.tempfile]
version = "3.10"
[lib]
name = "fluxmap"
path = "src/lib.rs"
[package]
authors = ["Abiru Ekanayaka <abiruekanayaka5@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "concurrency", "data-structures", "database"]
description = "A thread-safe, transactional, and concurrent in-memory key-value store for Rust. Offers ACID guarantees with Serializable Snapshot Isolation (SSI) and optional durability via a Write-Ahead Log (WAL). Designed for ease of use, high performance, and modern async Rust."
documentation = "https://docs.rs/fluxmap"
edition = "2024"
keywords = ["map", "skiplist", "lock-free", "mvcc", "wal"]
license = "MIT"
name = "fluxmap"
readme = "README.md"
repository = "https://github.com/AbiruEkanayaka/FluxMap"
version = "0.3.2"
[[test]]
name = "db"
path = "tests/db.rs"
[[test]]
name = "memory"
path = "tests/memory.rs"
[[test]]
name = "persistence"
path = "tests/persistence.rs"
[[test]]
name = "skiplist"
path = "tests/skiplist.rs"