[dependencies.base64]
version = "0.22"
[dependencies.bincode]
version = "1.3.3"
[dependencies.blake3]
version = "1.5.4"
[dependencies.fs2]
version = "0.4"
[dependencies.hashbrown]
features = ["raw"]
version = "0.14.5"
[dependencies.heed]
version = "0.20.5"
[dependencies.memmap2]
version = "0.9.4"
[dependencies.parking_lot]
version = "0.12.3"
[dependencies.rayon]
version = "1.10.0"
[dependencies.rustls]
version = "0.21"
[dependencies.rustls-pemfile]
version = "1.0"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.tokio]
features = ["rt-multi-thread", "macros", "net", "time", "io-util", "sync"]
version = "1.38"
[dependencies.tokio-rustls]
version = "0.24"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
features = ["env-filter", "fmt", "json"]
version = "0.3"
[dependencies.zstd]
version = "0.13.1"
[dev-dependencies.rcgen]
version = "0.12"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.12.0"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "block_benchmark"
path = "examples/block_benchmark.rs"
[[example]]
name = "blockchain_reorg"
path = "examples/blockchain_reorg.rs"
[[example]]
name = "network_client"
path = "examples/network_client.rs"
[[example]]
name = "observability"
path = "examples/observability.rs"
[[example]]
name = "parallel_processing"
path = "examples/parallel_processing.rs"
[[example]]
name = "sparse_blocks"
path = "examples/sparse_blocks.rs"
[lib]
name = "rollblock"
path = "src/lib.rs"
[package]
authors = ["Ouziel Slama"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database", "data-structures"]
description = "A super-fast, block-oriented and rollbackable key-value store."
edition = "2021"
keywords = ["blockchain", "storage", "rollback", "state", "database"]
license = "MIT OR Apache-2.0"
name = "rollblock"
readme = "README.md"
repository = "https://github.com/ouziel-slama/rollblock"
version = "0.3.3"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[[test]]
name = "network"
path = "tests/network.rs"
[[test]]
name = "orchestrator"
path = "tests/orchestrator.rs"
[[test]]
name = "store_modes"
path = "tests/store_modes.rs"