[package]
edition = "2024"
name = "bllist"
version = "0.2.0"
authors = [
"William Wu <williamwutq@gmail.com>",
"Claude <claude@anthropic.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Persistent block lists (fixed & dynamic) with reclamation and checksums, built on top of bstack"
documentation = "https://docs.rs/bllist"
readme = "README.md"
keywords = [
"list",
"persistent",
"file-backed",
"database",
"binary",
]
license = "MIT"
repository = "https://github.com/williamwutq/bllist"
[lib]
name = "bllist"
path = "src/lib.rs"
[dependencies.bstack]
version = ">=0.1.3"
features = ["set"]
[dependencies.crc32fast]
version = "1.5"