mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 06:39:58 -07:00
global: cargo update
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
[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 }
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
[dependencies]
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
[package]
|
||||
name = "brk_computer"
|
||||
description = "A Bitcoin dataset computer, built on top of brk_indexer"
|
||||
version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
[dependencies]
|
||||
brk_core = { workspace = true }
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
[package]
|
||||
name = "brk_core"
|
||||
description = "The Core (Structs and Errors) of the Bitcoin Research Kit"
|
||||
license.workspace = true
|
||||
edition.workspace = true
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
[dependencies]
|
||||
bitcoin = { workspace = true }
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
[package]
|
||||
name = "brk_fetcher"
|
||||
description = "A Bitcoin price fetcher built on top of brk_indexer"
|
||||
version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
[dependencies]
|
||||
brk_core = { workspace = true }
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
[package]
|
||||
name = "brk_indexer"
|
||||
description = "A Bitcoin Core indexer built on top of brk_parser"
|
||||
version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
[dependencies]
|
||||
bitcoin = { workspace = true }
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
[package]
|
||||
name = "brk_logger"
|
||||
description = "A clean logger used in the Bitcoin Research Kit"
|
||||
version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
[dependencies]
|
||||
color-eyre = { workspace = true }
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
[package]
|
||||
name = "brk_parser"
|
||||
description = "A very fast Bitcoin Core block parser and iterator built on top of bitcoin-rust"
|
||||
repository = "https://github.com/kibo-money/kibo/tree/main/src/crates/biter"
|
||||
keywords = ["bitcoin", "block", "iterator"]
|
||||
categories = ["cryptography::cryptocurrencies", "encoding"]
|
||||
version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
[dependencies]
|
||||
bitcoin = { workspace = true }
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
[package]
|
||||
name = "brk_server"
|
||||
description = "A server that serves Bitcoin data and swappable front-ends, built on top of brk_indexer, brk_fetcher and brk_computer"
|
||||
version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
[dependencies]
|
||||
axum = "0.8.1"
|
||||
|
||||
@@ -2,8 +2,9 @@
|
||||
name = "hodor"
|
||||
description = "Hold the door, an exit blocker that can wait until a task is completed"
|
||||
version = "0.1.1"
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
[dependencies]
|
||||
ctrlc = "3.4.5"
|
||||
|
||||
@@ -4,8 +4,9 @@ description = "A very small, fast, efficient and simple storable Vec"
|
||||
version = "0.1.3"
|
||||
keywords = ["vec", "disk", "data"]
|
||||
categories = ["database"]
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
[features]
|
||||
json = ["serde", "serde_json"]
|
||||
|
||||
Reference in New Issue
Block a user