[package]
edition = "2021"
name = "actionqueue-storage"
version = "0.1.0"
authors = ["Keith <zed.colonel@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "WAL, snapshot, and recovery storage layer for the ActionQueue task queue engine."
readme = "README.md"
keywords = [
"wal",
"snapshot",
"recovery",
"persistence",
"task-queue",
]
categories = ["database-implementations"]
license = "MIT"
repository = "https://github.com/zed-colonel/actionqueue"
[features]
default = ["serde"]
serde = ["actionqueue-core/serde"]
workflow = ["actionqueue-core/workflow"]
[lib]
name = "actionqueue_storage"
path = "src/lib.rs"
[[test]]
name = "mutation_authority"
path = "tests/mutation_authority.rs"
[[test]]
name = "proptest_wal_replay"
path = "tests/proptest_wal_replay.rs"
[[test]]
name = "snapshot_model_parity"
path = "tests/snapshot_model_parity.rs"
[[test]]
name = "wal_partial_record"
path = "tests/wal_partial_record.rs"
[[test]]
name = "wal_reader_streaming"
path = "tests/wal_reader_streaming.rs"
[[test]]
name = "wal_replay"
path = "tests/wal_replay.rs"
[dependencies.actionqueue-core]
version = "0.1.0"
[dependencies.crc32fast]
version = "1"
[dependencies.postcard]
version = "1"
features = ["alloc"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.actionqueue-executor-local]
version = "0.1.0"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.tempfile]
version = "3.0"
[dev-dependencies.uuid]
version = "1.0"
features = ["v4"]