[[bench]]
harness = false
name = "append_benchmark"
path = "benches/append_benchmark.rs"
[[bench]]
harness = false
name = "read_benchmark"
path = "benches/read_benchmark.rs"
[[bench]]
harness = false
name = "stress_benchmark"
path = "benches/stress_benchmark.rs"
[dependencies.byteorder]
version = "1.5"
[dependencies.bytes]
version = "1.11"
[dependencies.chrono]
version = "0.4"
[dependencies.crc32fast]
version = "1.5"
[dependencies.fibre_cache]
version = "0.4"
[dependencies.fs2]
version = "0.4"
[dependencies.lz4_flex]
features = ["frame"]
optional = true
version = "0.12"
[dependencies.memmap2]
version = "0.9"
[dependencies.parking_lot]
version = "0.12"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.proptest]
version = "1.9.0"
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.24"
[dev-dependencies.tokio]
features = ["full"]
version = "1"
[features]
compression = ["dep:lz4_flex"]
default = ["compression"]
[lib]
name = "ironwal"
path = "src/lib.rs"
[package]
authors = ["Excerion Sun <dev@excsn.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database-implementations", "filesystem"]
description = "A high performance, high durability, deterministic Write-Ahead Log (WAL) for reliable systems of record."
documentation = "https://docs.rs/ironwal"
edition = "2024"
keywords = ["wal", "ledger", "database", "persistence", "journal"]
license = "MPL-2.0"
name = "ironwal"
readme = "README.md"
repository = "https://github.com/excsn/ironwal"
version = "0.5.0"
[[test]]
name = "basic_io"
path = "tests/basic_io.rs"
[[test]]
name = "compression"
path = "tests/compression.rs"
required-features = ["compression"]
[[test]]
name = "concurrency"
path = "tests/concurrency.rs"
[[test]]
name = "fuzz_properties"
path = "tests/fuzz_properties.rs"
[[test]]
name = "iterator"
path = "tests/iterator.rs"
[[test]]
name = "recovery"
path = "tests/recovery.rs"
[[test]]
name = "rotation"
path = "tests/rotation.rs"
[[test]]
name = "truncation"
path = "tests/truncation.rs"