[package]
edition = "2024"
rust-version = "1.85"
name = "pi_append_log"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Storage-agnostic append-only block log traits, codec, layout, and file backend"
readme = "README.md"
keywords = [
"append-log",
"storage",
"persistence",
"wal",
]
categories = [
"data-structures",
"filesystem",
]
license = "MIT"
[lib]
name = "pi_append_log"
path = "src/lib.rs"
[[test]]
name = "default_codec_test"
path = "tests/default_codec_test.rs"
[[test]]
name = "file_append_log_runtime_test"
path = "tests/file_append_log_runtime_test.rs"
[[test]]
name = "file_append_log_test"
path = "tests/file_append_log_test.rs"
[[test]]
name = "final_recovery_concurrency_test"
path = "tests/final_recovery_concurrency_test.rs"
[[test]]
name = "layout_test"
path = "tests/layout_test.rs"
[dependencies.crc32fast]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"fs",
"macros",
"rt-multi-thread",
"sync",
"time",
]