mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 14:49:58 -07:00
34 lines
850 B
TOML
34 lines
850 B
TOML
[package]
|
|
name = "brk_cli"
|
|
description = "A command line interface to interact with the full Bitcoin Research Kit"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
brk_computer = { workspace = true }
|
|
brk_core = { workspace = true }
|
|
brk_exit = { workspace = true }
|
|
brk_fetcher = { workspace = true }
|
|
brk_indexer = { workspace = true }
|
|
brk_logger = { workspace = true }
|
|
brk_parser = { workspace = true }
|
|
brk_query = { workspace = true }
|
|
brk_server = { workspace = true }
|
|
brk_vec = { workspace = true }
|
|
clap = { workspace = true }
|
|
clap_derive = { workspace = true }
|
|
color-eyre = { workspace = true }
|
|
log = { workspace = true }
|
|
serde = { workspace = true }
|
|
tabled = { workspace = true }
|
|
toml = "0.8.22"
|
|
|
|
[[bin]]
|
|
name = "brk"
|
|
path = "src/main.rs"
|
|
|
|
[package.metadata.dist]
|
|
dist = false
|