[package]
edition = "2021"
rust-version = "1.75"
name = "blk-reader"
version = "0.1.0"
authors = ["Rodrigo Escorsim <rodrigo.escorsim@gmail.com>"]
build = false
exclude = [".github/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast reader for Bitcoin Core blk*.dat files with automatic XOR decoding (Bitcoin Core 28.0+)"
homepage = "https://github.com/rodrigoescorsim/blk-reader"
documentation = "https://docs.rs/blk-reader"
readme = "README.md"
keywords = [
"bitcoin",
"blockchain",
"blkdat",
"bitcoin-core",
"parser",
]
categories = [
"parsing",
"cryptography::cryptocurrencies",
"encoding",
]
license = "MIT"
repository = "https://github.com/rodrigoescorsim/blk-reader"
[lib]
name = "blk_reader"
path = "src/lib.rs"
[[example]]
name = "iterate_blocks"
path = "examples/iterate_blocks.rs"
[[example]]
name = "read_genesis"
path = "examples/read_genesis.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.crc]
version = "3"
[dependencies.hex]
version = "0.4"
[dependencies.rusty-leveldb]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.0"
features = ["v4"]
[dev-dependencies.hex]
version = "0.4"