oxifaster 0.1.0

A high-performance concurrent key-value store and log engine in Rust
Documentation
[[bench]]
harness = false
name = "ycsb"
path = "benches/ycsb.rs"

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

[dependencies.bincode]
version = "1"

[dependencies.bytes]
version = "1"

[dependencies.crossbeam]
version = "0.8"

[dependencies.crossbeam-utils]
version = "0.8"

[dependencies.parking_lot]
version = "0.12"

[dependencies.pin-project-lite]
version = "0.2"

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

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "1"

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

[dependencies.tracing]
version = "0.1"

[dependencies.uuid]
features = ["v4", "serde"]
version = "1"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tokio-test]
version = "0.4"

[[example]]
name = "basic_kv"
path = "examples/basic_kv.rs"

[[example]]
name = "concurrent_access"
path = "examples/concurrent_access.rs"

[[example]]
name = "custom_types"
path = "examples/custom_types.rs"

[[example]]
name = "epoch_protection"
path = "examples/epoch_protection.rs"

[[example]]
name = "faster_log"
path = "examples/faster_log.rs"

[features]
default = []
statistics = []

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

[package]
authors = ["oxifaster contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database", "data-structures", "concurrency"]
description = "A high-performance concurrent key-value store and log engine in Rust"
edition = "2021"
keywords = ["kv-store", "database", "concurrent", "log", "storage"]
license = "MIT"
name = "oxifaster"
readme = "README.md"
repository = "https://github.com/wayslog/oxifaster"
version = "0.1.0"

[profile.bench]
codegen-units = 1
lto = true

[profile.release]
codegen-units = 1
lto = true
opt-level = 3

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

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

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