[package]
edition = "2024"
name = "talea-store-log"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Append-log storage backend for the talea ledger: in-memory state, group commit, strict fsync-per-batch durability"
readme = "README.md"
license = "MIT"
repository = "https://github.com/mooze-labs/talea"
[lib]
name = "talea_store_log"
path = "src/lib.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "crash"
path = "tests/crash.rs"
[[test]]
name = "replay_prop"
path = "tests/replay_prop.rs"
[dependencies.async-stream]
version = "0.3"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.chrono]
version = "0.4.44"
features = ["serde"]
[dependencies.crc32fast]
version = "1.4"
[dependencies.fs4]
version = "0.13"
[dependencies.futures]
version = "0.3.32"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.talea-core]
version = "0.1.0"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.52.3"
features = [
"sync",
"rt",
"fs",
"io-util",
]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.23.2"
features = [
"v7",
"serde",
]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.52.3"
features = [
"macros",
"rt-multi-thread",
"time",
]
[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"
[lints.rust]
unsafe_code = "forbid"