persistent-queue 0.1.1

A durable, at-least-once MPSC queue backed by in-memory and durable backends (sled, redb).
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "persistent-queue"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A durable, at-least-once MPSC queue backed by in-memory and durable backends (sled, redb)."
readme = "README.md"
keywords = [
    "queue",
    "persistent",
    "durable",
    "mpsc",
    "storage",
]
categories = [
    "concurrency",
    "data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/rolandjitsu/persistent-queue"

[features]
default = []
redb = ["dep:redb"]
rocksdb = ["dep:rocksdb"]
sled = ["dep:sled"]

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

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

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

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

[[bench]]
name = "throughput"
path = "benches/throughput.rs"
harness = false

[dependencies.redb]
version = "2"
optional = true

[dependencies.rocksdb]
version = "0.22"
optional = true

[dependencies.sled]
version = "0.34"
optional = true

[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false

[dev-dependencies.tempfile]
version = "3"

[target."cfg(loom)".dependencies.loom]
version = "0.7"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]