[package]
edition = "2024"
name = "ironwal"
version = "0.6.2"
authors = ["Excerion Sun <dev@excsn.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high performance, high durability, deterministic Write-Ahead Log (WAL) for reliable systems of record."
documentation = "https://docs.rs/ironwal"
readme = "README.md"
keywords = [
"wal",
"ledger",
"database",
"persistence",
"journal",
]
categories = [
"database-implementations",
"filesystem",
]
license = "MPL-2.0"
repository = "https://github.com/excsn/ironwal"
[features]
compression = ["dep:lz4_flex"]
default = ["compression"]
sharded = []
[lib]
name = "ironwal"
path = "src/lib.rs"
[[example]]
name = "sharded_wal"
path = "examples/sharded_wal.rs"
[[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 = "sharded_basic"
path = "tests/sharded/basic.rs"
required-features = ["sharded"]
[[test]]
name = "sharded_checkpoint"
path = "tests/sharded/checkpoint.rs"
required-features = ["sharded"]
[[test]]
name = "sharded_compaction"
path = "tests/sharded/compaction.rs"
required-features = ["sharded"]
[[test]]
name = "sharded_concurrency"
path = "tests/sharded/concurrency.rs"
required-features = ["sharded"]
[[test]]
name = "sharded_fuzz_properties"
path = "tests/sharded/fuzz_properties.rs"
required-features = ["sharded"]
[[test]]
name = "sharded_pruning"
path = "tests/sharded/pruning.rs"
required-features = ["sharded"]
[[test]]
name = "sharded_recovery"
path = "tests/sharded/recovery.rs"
required-features = ["sharded"]
[[test]]
name = "truncation"
path = "tests/truncation.rs"
[[bench]]
name = "append_benchmark"
path = "benches/append_benchmark.rs"
harness = false
[[bench]]
name = "read_benchmark"
path = "benches/read_benchmark.rs"
harness = false
[[bench]]
name = "sharded_append"
path = "benches/sharded_append.rs"
harness = false
required-features = ["sharded"]
[[bench]]
name = "sharded_checkpoint"
path = "benches/sharded_checkpoint.rs"
harness = false
required-features = ["sharded"]
[[bench]]
name = "sharded_concurrency"
path = "benches/sharded_concurrency.rs"
harness = false
required-features = ["sharded"]
[[bench]]
name = "stress_benchmark"
path = "benches/stress_benchmark.rs"
harness = false
[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]
version = "0.12"
features = ["frame"]
optional = true
[dependencies.memmap2]
version = "0.9"
[dependencies.parking_lot]
version = "0.12"
[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]
version = "1"
features = ["full"]