From 8c9bcebc71c1d721e53c293359198c26122832aa Mon Sep 17 00:00:00 2001 From: Daniela Brozzoni Date: Thu, 2 Mar 2023 19:15:36 +0100 Subject: [PATCH] Fix the "repository" field in Cargo.toml --- crates/chain/Cargo.toml | 2 +- crates/electrum/Cargo.toml | 2 +- crates/esplora/Cargo.toml | 2 +- crates/file_store/Cargo.toml | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/crates/chain/Cargo.toml b/crates/chain/Cargo.toml index 6877b2b8..a443076a 100644 --- a/crates/chain/Cargo.toml +++ b/crates/chain/Cargo.toml @@ -3,7 +3,7 @@ name = "bdk_chain" version = "0.3.1" edition = "2021" homepage = "https://bitcoindevkit.org" -repository = "https://github.com/LLFourn/bdk_core_staging" +repository = "https://github.com/bitcoindevkit/bdk" documentation = "https://docs.rs/bdk_chain" description = "Collection of core structures for Bitcoin Dev Kit." license = "MIT OR Apache-2.0" diff --git a/crates/electrum/Cargo.toml b/crates/electrum/Cargo.toml index a0f70c7e..05b93160 100644 --- a/crates/electrum/Cargo.toml +++ b/crates/electrum/Cargo.toml @@ -3,7 +3,7 @@ name = "bdk_electrum" version = "0.1.0" edition = "2021" homepage = "https://bitcoindevkit.org" -repository = "https://github.com/LLFourn/bdk_core_staging" +repository = "https://github.com/bitcoindevkit/bdk" documentation = "https://docs.rs/bdk_electrum" description = "Fetch data from electrum in the form BDK accepts" license = "MIT OR Apache-2.0" diff --git a/crates/esplora/Cargo.toml b/crates/esplora/Cargo.toml index 680ed3c5..c76325b7 100644 --- a/crates/esplora/Cargo.toml +++ b/crates/esplora/Cargo.toml @@ -3,7 +3,7 @@ name = "bdk_esplora" version = "0.1.0" edition = "2021" homepage = "https://bitcoindevkit.org" -repository = "https://github.com/LLFourn/bdk_core_staging" +repository = "https://github.com/bitcoindevkit/bdk" documentation = "https://docs.rs/bdk_esplora" description = "Fetch data from esplora in the form that accepts" license = "MIT OR Apache-2.0" diff --git a/crates/file_store/Cargo.toml b/crates/file_store/Cargo.toml index 2a535825..06d76171 100644 --- a/crates/file_store/Cargo.toml +++ b/crates/file_store/Cargo.toml @@ -3,6 +3,7 @@ name = "bdk_file_store" version = "0.0.1" edition = "2021" license = "MIT OR Apache-2.0" +repository = "https://github.com/bitcoindevkit/bdk" [dependencies] bdk_chain = { path = "../chain", version = "0.3", features = [ "serde", "miniscript" ] }