feoxdb 0.5.1

Iron-oxide fast embedded database - nanosecond-level key-value storage
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "feoxdb"
version = "0.5.1"
authors = ["Mehran Toosi <dev@mehran.dk>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Iron-oxide fast embedded database - nanosecond-level key-value storage"
homepage = "https://feoxdb.com"
documentation = "https://docs.rs/feoxdb"
readme = "README.md"
keywords = [
    "database",
    "key-value",
    "embedded",
    "storage",
    "performance",
]
categories = [
    "database",
    "data-structures",
    "filesystem",
    "caching",
]
license = "Apache-2.0"
repository = "https://github.com/mehrantsi/feoxdb"

[features]
default = ["jemalloc"]
io_uring = []
jemalloc = ["tikv-jemallocator"]
persistent = []
system-alloc = []

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

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

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

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

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

[[bench]]
name = "latency"
path = "benches/latency.rs"
harness = false

[[bench]]
name = "throughput"
path = "benches/throughput.rs"
harness = false

[dependencies.ahash]
version = "0.8"

[dependencies.bytes]
version = "1.5"

[dependencies.crossbeam-channel]
version = "0.5"

[dependencies.crossbeam-epoch]
version = "0.9"

[dependencies.crossbeam-skiplist]
version = "0.1.3"

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

[dependencies.intrusive-collections]
version = "0.9"

[dependencies.json-patch]
version = "4.0"

[dependencies.num_cpus]
version = "1.16"

[dependencies.once_cell]
version = "1.19"

[dependencies.parking_lot]
version = "0.12"
features = ["arc_lock"]

[dependencies.rand]
version = "0.9"

[dependencies.scc]
version = "2.1"

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.tikv-jemallocator]
version = "0.6"
optional = true

[dev-dependencies.clap]
version = "4.4"
features = ["derive"]

[dev-dependencies.criterion]
version = "0.7"

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

[target.'cfg(target_os = "linux")'.dependencies.io-uring]
version = "0.7"

[target."cfg(unix)".dependencies.libc]
version = "0.2"

[target."cfg(unix)".dependencies.nix]
version = "0.30"
features = [
    "fs",
    "mman",
]

[profile.bench]
inherits = "release"

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
debug = 0
strip = true