mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 06:39:58 -07:00
24 lines
766 B
TOML
24 lines
766 B
TOML
[package]
|
|
name = "brk_reader"
|
|
description = "A very fast Bitcoin block parser and iterator built on top of bitcoin-rust"
|
|
keywords = ["bitcoin", "block", "iterator"]
|
|
categories = ["cryptography::cryptocurrencies", "encoding"]
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
exclude = ["examples/"]
|
|
|
|
[dependencies]
|
|
bitcoin = { workspace = true }
|
|
brk_error = { workspace = true }
|
|
brk_rpc = { workspace = true, features = ["corepc"] }
|
|
brk_types = { workspace = true }
|
|
crossbeam = { version = "0.8.4", features = ["crossbeam-channel"] }
|
|
derive_more = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
rlimit = "0.11.0"
|
|
rustc-hash = { workspace = true }
|
|
tracing = { workspace = true }
|