From 34923638c58bf81fc67193e8cf2fcc8a733796e0 Mon Sep 17 00:00:00 2001 From: nym21 Date: Wed, 26 Feb 2025 10:45:00 +0100 Subject: [PATCH] global: cargo update --- crates/brk_cli/Cargo.toml | 7 ++++--- crates/brk_computer/Cargo.toml | 7 ++++--- crates/brk_core/Cargo.toml | 5 +++-- crates/brk_fetcher/Cargo.toml | 7 ++++--- crates/brk_indexer/Cargo.toml | 7 ++++--- crates/brk_logger/Cargo.toml | 7 ++++--- crates/brk_parser/Cargo.toml | 8 ++++---- crates/brk_server/Cargo.toml | 7 ++++--- crates/hodor/Cargo.toml | 5 +++-- crates/storable_vec/Cargo.toml | 5 +++-- 10 files changed, 37 insertions(+), 28 deletions(-) diff --git a/crates/brk_cli/Cargo.toml b/crates/brk_cli/Cargo.toml index f4ca6df65..971174b83 100644 --- a/crates/brk_cli/Cargo.toml +++ b/crates/brk_cli/Cargo.toml @@ -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] diff --git a/crates/brk_computer/Cargo.toml b/crates/brk_computer/Cargo.toml index a3d0de575..cc51d0c3c 100644 --- a/crates/brk_computer/Cargo.toml +++ b/crates/brk_computer/Cargo.toml @@ -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 } diff --git a/crates/brk_core/Cargo.toml b/crates/brk_core/Cargo.toml index 56baddb32..5cda329b7 100644 --- a/crates/brk_core/Cargo.toml +++ b/crates/brk_core/Cargo.toml @@ -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 } diff --git a/crates/brk_fetcher/Cargo.toml b/crates/brk_fetcher/Cargo.toml index 3b7ee8841..64e846493 100644 --- a/crates/brk_fetcher/Cargo.toml +++ b/crates/brk_fetcher/Cargo.toml @@ -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 } diff --git a/crates/brk_indexer/Cargo.toml b/crates/brk_indexer/Cargo.toml index 00cdc2a3a..09bfda837 100644 --- a/crates/brk_indexer/Cargo.toml +++ b/crates/brk_indexer/Cargo.toml @@ -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 } diff --git a/crates/brk_logger/Cargo.toml b/crates/brk_logger/Cargo.toml index d598f3fc2..354a847c5 100644 --- a/crates/brk_logger/Cargo.toml +++ b/crates/brk_logger/Cargo.toml @@ -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 } diff --git a/crates/brk_parser/Cargo.toml b/crates/brk_parser/Cargo.toml index 9d2b52c05..a6d1b9550 100644 --- a/crates/brk_parser/Cargo.toml +++ b/crates/brk_parser/Cargo.toml @@ -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 } diff --git a/crates/brk_server/Cargo.toml b/crates/brk_server/Cargo.toml index 6e1ffb612..53298095b 100644 --- a/crates/brk_server/Cargo.toml +++ b/crates/brk_server/Cargo.toml @@ -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" diff --git a/crates/hodor/Cargo.toml b/crates/hodor/Cargo.toml index 930167702..7689d6ba9 100644 --- a/crates/hodor/Cargo.toml +++ b/crates/hodor/Cargo.toml @@ -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" diff --git a/crates/storable_vec/Cargo.toml b/crates/storable_vec/Cargo.toml index 1b22c346b..ebee0f823 100644 --- a/crates/storable_vec/Cargo.toml +++ b/crates/storable_vec/Cargo.toml @@ -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"]