protoblock 0.1.0

Asynchronous Bitcoin block ingestion pipeline with built-in reorg handling, backpressure, and observability
[dependencies.anyhow]
version = "1.0"

[dependencies.base64]
version = "0.21"

[dependencies.bitcoin]
version = "0.31"

[dependencies.bytes]
version = "1.5"

[dependencies.futures]
version = "0.3"

[dependencies.hex]
version = "0.4"

[dependencies.jsonrpsee]
features = ["http-client", "macros"]
version = "0.22"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.tokio]
features = ["full"]
version = "1"

[dependencies.tokio-util]
version = "0.7"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"

[dev-dependencies.hyper]
features = ["full"]
version = "0.14"

[dev-dependencies.indicatif]
version = "0.17"

[dev-dependencies.once_cell]
version = "1.19"

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

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

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

[package]
authors = ["Ouziel Slama <ouziel.slama@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "network-programming", "database"]
description = "Asynchronous Bitcoin block ingestion pipeline with built-in reorg handling, backpressure, and observability"
documentation = "https://docs.rs/protoblock"
edition = "2021"
homepage = "https://github.com/ouziel-slama/protoblock"
keywords = ["bitcoin", "blockchain", "rpc", "pipeline", "async"]
license = "MIT OR Apache-2.0"
name = "protoblock"
readme = "README.md"
repository = "https://github.com/ouziel-slama/protoblock"
version = "0.1.0"

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