From 9ca51a195d074284cde6cad59defb5056a7faf01 Mon Sep 17 00:00:00 2001 From: Richard Ulrich Date: Thu, 9 Jan 2025 09:11:19 +0100 Subject: [PATCH] upgrading to match bdk v0.30.1 --- .github/workflows/cont_integration.yml | 2 +- Cargo.toml | 6 +++--- Makefile | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 55dcdc8..335549e 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -39,7 +39,7 @@ jobs: if: matrix.rust == '1.63.0' run: | cargo update -p home:0.5.9 --precise 0.5.5 - cargo update -p tokio:1.42.0 --precise 1.38.1 + cargo update -p tokio:1.43.0 --precise 1.38.1 cargo update -p tokio-macros:2.4.0 --precise 1.8.2 cargo update -p cc --precise 1.0.105 cargo update -p home --precise 0.5.5 diff --git a/Cargo.toml b/Cargo.toml index d7fbd20..86a22f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk-reserves" -version = "0.30.0" +version = "0.30.1" authors = ["Richard Ulrich "] edition = "2018" description = "Proof of reserves for bitcoin dev kit" @@ -10,12 +10,12 @@ license = "MIT OR Apache-2.0" repository = "https://github.com/bitcoindevkit/bdk-reserves" [dependencies] -bdk = { version = "0.30", default-features = false, features = ["std"] } +bdk = { version = "0.30.1", default-features = false, features = ["std"] } bitcoinconsensus = "0.19.0-3" log = "^0.4" [dev-dependencies] rstest = "^0.11" bdk-testutils = "^0.4" -bdk = { version = "0.30", default-features = true } +bdk = { version = "0.30.1", default-features = true } electrsd = { version = "0.24", features = ["bitcoind_22_0", "electrs_0_9_1"] } diff --git a/Makefile b/Makefile index 9a51729..03f944f 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ test_63: builder_63 rm -f Cargo.lock $(DOCKER_RUN) ${TAG_63} cargo test || true $(DOCKER_RUN) ${TAG_63} cargo update -p home:0.5.9 --precise 0.5.5 || true - $(DOCKER_RUN) ${TAG_63} cargo update -p tokio:1.42.0 --precise 1.38.1 || true + $(DOCKER_RUN) ${TAG_63} cargo update -p tokio:1.43.0 --precise 1.38.1 || true $(DOCKER_RUN) ${TAG_63} cargo update -p tokio-macros:2.4.0 --precise 1.8.2 || true $(DOCKER_RUN) ${TAG_63} cargo update -p cc --precise 1.0.105 || true $(DOCKER_RUN) ${TAG_63} cargo update -p home --precise 0.5.5 || true