shmap 0.2.2

A key-value store based on unix shared-memory files (shm) for persisting state across program restarts.
Documentation
[package]
authors = ["BarbossHack <barbossh4ck@protonmail.com>"]
categories = ["database-implementations", "concurrency", "data-structures", "caching"]
description = "A key-value store based on unix shared-memory files (shm) for persisting state across program restarts."
edition = "2021"
homepage = "https://github.com/BarbossHack/shmap"
keywords = ["shm", "shared-memory", "inter-process", "store", "ramfs"]
license = "MIT OR Apache-2.0"
name = "shmap"
readme = "README.md"
repository = "https://github.com/BarbossHack/shmap"
version = "0.2.2"

[dependencies]
bincode = {version = "2.0.0-rc", default-features = false, features = ["std", "serde"]}
chrono = {version = "0.4", features = ["serde"]}
fdlimit = "0.2"
libc = "0.2"
memmap2 = "0.5"
named-lock = "0.2"
serde = {version = "1.0", features = ["serde_derive"]}
sha2 = "0.10"
thiserror = "1.0"

[dev-dependencies]
rand = "0.8"