[package]
edition = "2024"
name = "pi_append_log"
version = "0.3.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"
documentation = "https://docs.rs/pi_append_log"
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 = "append_stream_test"
path = "tests/append_stream_test.rs"
[[test]]
name = "cancelled_append_state_test"
path = "tests/cancelled_append_state_test.rs"
[[test]]
name = "default_codec_test"
path = "tests/default_codec_test.rs"
[[test]]
name = "detachable_append_test"
path = "tests/detachable_append_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 = "file_namespace_identity_test"
path = "tests/file_namespace_identity_test.rs"
[[test]]
name = "file_state_conflict_test"
path = "tests/file_state_conflict_test.rs"
[[test]]
name = "final_recovery_concurrency_test"
path = "tests/final_recovery_concurrency_test.rs"
[[test]]
name = "layout_test"
path = "tests/layout_test.rs"
[[test]]
name = "multi_instance_runtime_coordination_test"
path = "tests/multi_instance_runtime_coordination_test.rs"
[dependencies.async-lock]
version = "3"
[dependencies.crc32fast]
version = "1"
[dependencies.futures-core]
version = "0.3"
[dependencies.pi_async_fs]
version = "=0.1.0"
[dependencies.pi_logger]
version = "0.9.5"
[dependencies.pi_result]
version = "0.1.1"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"fs",
"macros",
"rt-multi-thread",
"sync",
"time",
]
[lints.clippy]
drop_non_drop = "allow"