Skip to content

Commit 3b0877f

Browse files
committed
upgrading to bdk 0.30.2
1 parent ef8304c commit 3b0877f

File tree

4 files changed

+19
-21
lines changed

4 files changed

+19
-21
lines changed

.github/workflows/cont_integration.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
- 1.63.0 # MSRV
1515
steps:
1616
- name: checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818
- name: Generate cache key
1919
run: echo "${{ matrix.rust }} ${{ matrix.features }}" | tee .cache_key
2020
- name: cache
21-
uses: actions/cache@v2
21+
uses: actions/cache@v4
2222
with:
2323
path: |
2424
~/.cargo/registry
@@ -38,9 +38,14 @@ jobs:
3838
- name: Pin dependencies for MSRV
3939
if: matrix.rust == '1.63.0'
4040
run: |
41-
cargo update -p home:0.5.11 --precise 0.5.5
42-
cargo update -p tokio:1.43.0 --precise 1.38.1
41+
cargo update -p home --precise 0.5.5
42+
cargo update -p tokio --precise 1.38.1
43+
cargo update -p ring:0.17.14 --precise 0.17.8
4344
cargo update -p cc --precise 1.0.105
45+
cargo update -p flate2 --precise 1.0.35
46+
cargo update -p once_cell --precise 1.20.3
47+
cargo update -p bzip2-sys --precise 0.1.11+1.0.8
48+
cargo update -p minreq --precise 2.12.0
4449
- name: Build
4550
run: cargo build
4651
- name: Clippy

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bdk-reserves"
3-
version = "0.30.1"
3+
version = "0.30.2"
44
authors = ["Richard Ulrich <[email protected]>"]
55
edition = "2018"
66
description = "Proof of reserves for bitcoin dev kit"
@@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0"
1010
repository = "https://github.com/bitcoindevkit/bdk-reserves"
1111

1212
[dependencies]
13-
bdk = { version = "0.30.1", default-features = false, features = ["std"] }
13+
bdk = { version = "0.30.2", default-features = false, features = ["std"] }
1414
bitcoinconsensus = "0.19.0-3"
1515
log = "^0.4"
1616

Dockerfile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
<<<<<<< HEAD
2-
FROM rust:1.70-bookworm
3-
=======
41
FROM rust:1.81-bookworm
5-
>>>>>>> d2a9c38 (upgrading to match bdk v0.30)
62
ARG http_proxy
73
ENV http_proxy=$http_proxy
84
ENV https_proxy=$http_proxy

Makefile

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
TAG := bdk-reserves
2-
TAG_57 := bdk-reserves-57
3-
TAG_63 := bdk-reserves-61
2+
TAG_63 := bdk-reserves-63
43
http_proxy ?= http://172.17.0.1:3128
54
DOCKER_RUN := docker run --interactive --rm \
65
-v ${PWD}:/home/satoshi \
@@ -17,9 +16,14 @@ test_current: builder
1716
test_63: builder_63
1817
rm -f Cargo.lock
1918
$(DOCKER_RUN) ${TAG_63} cargo test || true
20-
$(DOCKER_RUN) ${TAG_63} cargo update -p home:0.5.11 --precise 0.5.5 || true
21-
$(DOCKER_RUN) ${TAG_63} cargo update -p tokio:1.43.0 --precise 1.38.1 || true
19+
$(DOCKER_RUN) ${TAG_63} cargo update -p home --precise 0.5.5 || true
20+
$(DOCKER_RUN) ${TAG_63} cargo update -p tokio --precise 1.38.1 || true
21+
$(DOCKER_RUN) ${TAG_63} cargo update -p ring:0.17.14 --precise 0.17.8 || true
2222
$(DOCKER_RUN) ${TAG_63} cargo update -p cc --precise 1.0.105 || true
23+
$(DOCKER_RUN) ${TAG_63} cargo update -p flate2 --precise 1.0.35 || true
24+
$(DOCKER_RUN) ${TAG_63} cargo update -p once_cell --precise 1.20.3 || true
25+
$(DOCKER_RUN) ${TAG_63} cargo update -p bzip2-sys --precise 0.1.11+1.0.8 || true
26+
$(DOCKER_RUN) ${TAG_63} cargo update -p minreq --precise 2.12.0 || true
2327
$(DOCKER_RUN) ${TAG_63} cargo test
2428

2529
run: builder
@@ -43,13 +47,6 @@ builder:
4347
--build-arg UID="$(shell id -u)" \
4448
.
4549

46-
builder_57:
47-
docker build --tag ${TAG_57}\
48-
--build-arg http_proxy="${http_proxy}" \
49-
--build-arg UID="$(shell id -u)" \
50-
-f Dockerfile_57 \
51-
.
52-
5350
builder_63:
5451
docker build --tag ${TAG_63}\
5552
--build-arg http_proxy="${http_proxy}" \

0 commit comments

Comments
 (0)