mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-25 07:09:59 -07:00
36 lines
1.5 KiB
TOML
36 lines
1.5 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["crates/*"]
|
|
package.description = "The Bitcoin Research Kit is a suite of tools designed to extract, compute and display data stored on a Bitcoin Core node"
|
|
package.license = "MIT"
|
|
package.edition = "2024"
|
|
package.version = "0.0.7"
|
|
package.repository = "https://github.com/bitcoinresearchkit/brk"
|
|
|
|
[workspace.dependencies]
|
|
bitcoin = { version = "0.32.5", features = ["serde"] }
|
|
bitcoincore-rpc = "0.19.0"
|
|
brk_computer = { version = "0", path = "crates/brk_computer" }
|
|
brk_core = { version = "0", path = "crates/brk_core" }
|
|
brk_exit = { version = "0", path = "crates/brk_exit" }
|
|
brk_fetcher = { version = "0", path = "crates/brk_fetcher" }
|
|
brk_indexer = { version = "0", path = "crates/brk_indexer" }
|
|
brk_logger = { version = "0", path = "crates/brk_logger" }
|
|
brk_parser = { version = "0", path = "crates/brk_parser" }
|
|
brk_query = { version = "0", path = "crates/brk_query" }
|
|
brk_server = { version = "0", path = "crates/brk_server" }
|
|
brk_vec = { version = "0", path = "crates/brk_vec" }
|
|
byteview = "0.5.4"
|
|
clap = { version = "4.5.31", features = ["derive", "string"] }
|
|
color-eyre = "0.6.3"
|
|
derive_deref = "1.1.1"
|
|
fjall = "2.6.7"
|
|
jiff = "0.2.1"
|
|
log = { version = "0.4.26" }
|
|
minreq = { version = "2.13.2", features = ["https", "serde_json"] }
|
|
rayon = "1.10.0"
|
|
serde = { version = "1.0.218", features = ["derive"] }
|
|
serde_json = { version = "1.0.140", features = ["float_roundtrip"] }
|
|
tabled = "0.18.0"
|
|
zerocopy = { version = "0.8.21", features = ["derive"] }
|