blk-reader 0.1.0

Fast reader for Bitcoin Core blk*.dat files with automatic XOR decoding (Bitcoin Core 28.0+)
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 = "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"