celerix-store 0.1.2

A lightweight, low-latency KV data store with 1:1 parity with the orginal golang version, atomic persistence, and AES-256-GCM encryption.
Documentation
[[bin]]
name = "celerix"
path = "src/bin/cli.rs"

[[bin]]
name = "celerix-stored"
path = "src/bin/stored.rs"

[dependencies.aes-gcm]
version = "0.10"

[dependencies.anyhow]
version = "1.0"

[dependencies.async-trait]
version = "0.1"

[dependencies.clap]
features = ["derive"]
version = "4.0"

[dependencies.env_logger]
version = "0.10"

[dependencies.futures]
version = "0.3"

[dependencies.hex]
version = "0.4"

[dependencies.log]
version = "0.4"

[dependencies.rustls-pemfile]
version = "1.0"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.tempfile]
version = "3.8"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
features = ["full"]
version = "1.0"

[dependencies.tokio-rustls]
version = "0.24"

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database-implementations", "cryptography"]
description = "A lightweight, low-latency KV data store with 1:1 parity with the orginal golang version, atomic persistence, and AES-256-GCM encryption."
edition = "2021"
homepage = "https://github.com/celerix-dev/celerix-store-rust"
keywords = ["kv", "store", "database", "json", "encryption"]
license = "MIT"
name = "celerix-store"
readme = "README.md"
repository = "https://github.com/celerix-dev/celerix-store-rust"
version = "0.1.2"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"