bblock 0.3.0

Persistent checksummed blocks built on top of bstack
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 = "bblock"
version = "0.3.0"
authors = [
    "William Wu <williamwutq@gmail.com>",
    "Claude <claude@anthropic.com>",
]
build = false
include = [
    "src/**/*",
    "Cargo.toml",
    "README.md",
    "CHANGELOG.md",
    "LICENSE",
    "examples/**/*.rs",
    ".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Persistent checksummed blocks built on top of bstack"
documentation = "https://docs.rs/bblock"
readme = "README.md"
keywords = [
    "checksum",
    "persistent",
    "file-backed",
    "database",
    "binary",
]
license = "MIT"
repository = "https://github.com/williamwutq/bblock"

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

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "combined"
path = "examples/combined.rs"

[[example]]
name = "guarded"
path = "examples/guarded.rs"

[[example]]
name = "io_readers"
path = "examples/io_readers.rs"

[[example]]
name = "journal"
path = "examples/journal.rs"

[[example]]
name = "migration"
path = "examples/migration.rs"

[[example]]
name = "zero_copy"
path = "examples/zero_copy.rs"

[dependencies.aes-gcm]
version = "0.10.3"

[dependencies.bstack]
version = "0.2"
features = [
    "alloc",
    "set",
    "guarded",
]

[dependencies.chacha20poly1305]
version = "0.10.1"

[dependencies.crc32fast]
version = "1.5"

[dependencies.lzma-rust2]
version = "0.16"
features = [
    "std",
    "encoder",
    "optimization",
]
default-features = false

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