[package]
edition = "2021"
rust-version = "1.75"
name = "datawal"
version = "0.1.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core record store for datawal: append-only framed records (CRC32C), valid-prefix recovery, bytes-based KV projection with tombstones, manual compaction, and JSONL export. v0.1-pre."
homepage = "https://github.com/deepcausa/datawal"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/deepcausa/datawal"
[lib]
name = "datawal"
path = "src/lib.rs"
[[example]]
name = "datawal_kv_demo"
path = "examples/datawal_kv_demo.rs"
[[example]]
name = "gen_corpus"
path = "examples/gen_corpus.rs"
[[example]]
name = "gen_soak_fixtures"
path = "examples/gen_soak_fixtures.rs"
[[example]]
name = "record_log_demo"
path = "examples/record_log_demo.rs"
[[example]]
name = "soak"
path = "examples/soak.rs"
[[example]]
name = "tail_recovery_demo"
path = "examples/tail_recovery_demo.rs"
[[test]]
name = "corpus_fixtures"
path = "tests/corpus_fixtures.rs"
[[test]]
name = "crash_injection"
path = "tests/crash_injection.rs"
[[test]]
name = "datawal"
path = "tests/datawal.rs"
[[test]]
name = "disk_full"
path = "tests/disk_full.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "keydir_by_offset"
path = "tests/keydir_by_offset.rs"
[[test]]
name = "multi_process_lock"
path = "tests/multi_process_lock.rs"
[[test]]
name = "poison_writer"
path = "tests/poison_writer.rs"
[[test]]
name = "proptest_recovery"
path = "tests/proptest_recovery.rs"
[[test]]
name = "reader_api"
path = "tests/reader_api.rs"
[[test]]
name = "record_log"
path = "tests/record_log.rs"
[[bench]]
name = "compaction"
path = "benches/compaction.rs"
harness = false
[[bench]]
name = "datawal_kv"
path = "benches/datawal_kv.rs"
harness = false
[[bench]]
name = "record_log"
path = "benches/record_log.rs"
harness = false
[[bench]]
name = "recovery"
path = "benches/recovery.rs"
harness = false
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22"
[dependencies.crc32c]
version = "0.6"
[dependencies.fs2]
version = "0.4"
[dependencies.safeatomic-rs]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false
[dev-dependencies.proptest]
version = "1.5"
features = ["std"]
default-features = false
[dev-dependencies.tempfile]
version = "3"