mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 06:39:58 -07:00
38 lines
1005 B
TOML
38 lines
1005 B
TOML
[package]
|
|
name = "brk_cli"
|
|
description = "A command line interface to run a BRK instance"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
bitcoincore-rpc = { workspace = true }
|
|
brk_bundler = { workspace = true }
|
|
brk_computer = { workspace = true }
|
|
brk_fetcher = { workspace = true }
|
|
brk_indexer = { workspace = true }
|
|
brk_interface = { workspace = true }
|
|
brk_logger = { workspace = true }
|
|
brk_parser = { workspace = true }
|
|
brk_server = { workspace = true }
|
|
vecdb = { workspace = true }
|
|
clap = { version = "4.5.47", features = ["derive", "string"] }
|
|
color-eyre = "0.6.5"
|
|
log = { workspace = true }
|
|
minreq = { workspace = true }
|
|
serde = { workspace = true }
|
|
tokio = { workspace = true }
|
|
toml = "0.9.7"
|
|
zip = { version = "5.1.1", default-features = false, features = ["deflate"] }
|
|
|
|
[[bin]]
|
|
name = "brk"
|
|
path = "src/main.rs"
|
|
|
|
[package.metadata.dist]
|
|
dist = false
|