walchan 0.1.0

A persistent mpsc-like channel backed by a write-ahead log (WAL).
Documentation
[dependencies.bincode]
version = "1"

[dependencies.crc32fast]
version = "1"

[dependencies.parking_lot]
version = "0.12"

[dependencies.serde]
features = ["derive"]
version = "1"

[dependencies.thiserror]
version = "1"

[dev-dependencies.anyhow]
version = "1"

[features]
default = ["fsync"]
fsync = []
stress = []

[lib]
name = "walchan"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "filesystem"]
description = "A persistent mpsc-like channel backed by a write-ahead log (WAL)."
documentation = "https://docs.rs/walchan"
edition = "2024"
homepage = "https://github.com/mudern/walchan"
keywords = ["wal", "channel", "mpsc", "durability", "queue"]
license = "MIT"
name = "walchan"
readme = "README.md"
repository = "https://github.com/mudern/walchan"
rust-version = "1.87.0"
version = "0.1.0"

[[test]]
name = "tests"
path = "tests/tests.rs"