cesiumdb 0.1.0

Blazing fast, persistent key-value store for Rust
# 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 = "2024"
name = "cesiumdb"
version = "0.1.0"
authors = ["Sienna Meridian Satterwhite <sienna@r3t.io>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Blazing fast, persistent key-value store for Rust"
readme = "README.md"
license = "GPL-3.0"
repository = "https://github.com/siennathesane/cesiumdb"

[features]
benchmarks = []
default_features = []
telemetry = [
    "dep:opentelemetry",
    "dep:opentelemetry_sdk",
]

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

[[bin]]
name = "bench"
path = "src/bin/bench.rs"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[[bench]]
name = "compaction"
path = "benches/compaction.rs"
harness = false
required-features = ["benchmarks"]

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

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

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

[[bench]]
name = "segment"
path = "benches/segment.rs"
harness = false
required-features = ["benchmarks"]

[dependencies.bytes]
version = "1.9"

[dependencies.crc32fast]
version = "1.4"

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

[dependencies.crossbeam-queue]
version = "0.3"

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

[dependencies.gxhash]
version = "3.4.1"

[dependencies.lazy_static]
version = "1.5.0"

[dependencies.loom]
version = "0.7"

[dependencies.memmap2]
version = "0.9.5"

[dependencies.mimalloc]
version = "0.1.43"

[dependencies.once_cell]
version = "1.20.2"

[dependencies.opentelemetry]
version = "0.27"
optional = true

[dependencies.opentelemetry_sdk]
version = "0.27"
optional = true

[dependencies.parking_lot]
version = "0.12.3"
features = ["deadlock_detection"]

[dependencies.rand]
version = "0.9.0"

[dependencies.rayon]
version = "1.10"

[dependencies.thiserror]
version = "2.0"

[dependencies.tracing]
version = "0.1"

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

[dev-dependencies.hex]
version = "0.4"

[dev-dependencies.rand]
version = "0.9"
features = ["small_rng"]

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

[dev-dependencies.tokio]
version = "1"
features = [
    "rt",
    "rt-multi-thread",
    "macros",
]

[build-dependencies.cbindgen]
version = "0.27.0"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]

[profile.bench]
debug = 2