mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 06:39:58 -07:00
24 lines
623 B
TOML
24 lines
623 B
TOML
[package]
|
|
name = "brk_cli"
|
|
description = "A command line interface to interact with the Bitcoin Research Kit"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
brk_computer = { workspace = true }
|
|
brk_exit = { workspace = true }
|
|
brk_indexer = { workspace = true }
|
|
brk_logger = { workspace = true }
|
|
brk_parser = { workspace = true }
|
|
brk_query = { workspace = true }
|
|
brk_server = { workspace = true }
|
|
clap = { workspace = true , features = ["string"] }
|
|
color-eyre = { workspace = true }
|
|
log = { workspace = true }
|
|
|
|
[[bin]]
|
|
name = "brk"
|
|
path = "src/main.rs"
|