Skip to content

Commit ad9a31f

Browse files
committed
upgrading to match bdk v0.30
1 parent db6c428 commit ad9a31f

File tree

4 files changed

+14
-32
lines changed

4 files changed

+14
-32
lines changed

.github/workflows/cont_integration.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
rust:
13-
- 1.75.0 # STABLE
13+
- 1.81.0 # current
1414
- 1.63.0 # MSRV
1515
steps:
1616
- name: checkout
@@ -38,8 +38,9 @@ jobs:
3838
- name: Pin dependencies for MSRV
3939
if: matrix.rust == '1.63.0'
4040
run: |
41-
cargo update -p home:0.5.9 --precise 0.5.5
42-
cargo update -p tokio:1.40.0 --precise 1.38.1
41+
cargo update -p home:0.5.11 --precise 0.5.5
42+
cargo update -p tokio:1.43.0 --precise 1.38.1
43+
cargo update -p tokio-macros:2.3.0 --precise 1.8.2
4344
cargo update -p cc --precise 1.0.105
4445
- name: Build
4546
run: cargo build

Cargo.toml

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

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

1717
[dev-dependencies]
1818
rstest = "^0.11"
1919
bdk-testutils = "^0.4"
20-
bdk = { version = "0.29", default-features = true }
20+
bdk = { version = "0.30.1", default-features = true }
2121
electrsd = { version = "0.24", features = ["bitcoind_22_0", "electrs_0_9_1"] }

Dockerfile

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

Makefile

Lines changed: 3 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -14,35 +14,12 @@ test_current: builder
1414
rm -f Cargo.lock
1515
$(DOCKER_RUN) ${TAG} cargo test
1616

17-
test_57: builder_57
18-
#rm -f Cargo.lock
19-
#$(DOCKER_RUN) ${TAG_57} cargo update -p log:0.4.20 --precise 0.4.18
20-
#$(DOCKER_RUN) ${TAG_57} cargo update -p tempfile --precise 3.6.0
21-
#$(DOCKER_RUN) ${TAG_57} cargo update -p sct:0.7.1 --precise 0.7.0
22-
$(DOCKER_RUN) ${TAG_57} cargo update -p zip:0.6.6 --precise 0.6.3 || true
23-
$(DOCKER_RUN) ${TAG_57} cargo update -p rustls:0.21.10 --precise 0.21.1 || true
24-
$(DOCKER_RUN) ${TAG_57} cargo update -p rustls:0.21.7 --precise 0.21.1 || true
25-
$(DOCKER_RUN) ${TAG_57} cargo update -p rustls:0.21.4 --precise 0.21.1 || true
26-
$(DOCKER_RUN) ${TAG_57} cargo update -p rustls:0.21.2 --precise 0.21.1 || true
27-
$(DOCKER_RUN) ${TAG_57} cargo update -p rustls:0.20.9 --precise 0.20.8 || true
28-
$(DOCKER_RUN) ${TAG_57} cargo update -p rustls-webpki:0.100.3 --precise 0.100.1 || true
29-
$(DOCKER_RUN) ${TAG_57} cargo update -p rustls-webpki:0.101.4 --precise 0.101.1 || true
30-
$(DOCKER_RUN) ${TAG_57} cargo update -p rustls-webpki:0.101.7 --precise 0.101.1 || true
31-
$(DOCKER_RUN) ${TAG_57} cargo update -p crossbeam-utils:0.8.18 --precise 0.8.16 || true
32-
$(DOCKER_RUN) ${TAG_57} cargo update -p tokio:1.35.1 --precise 1.29.1 || true
33-
$(DOCKER_RUN) ${TAG_57} cargo update -p rustix:0.38.9 --precise 0.38.3 || true
34-
$(DOCKER_RUN) ${TAG_57} cargo update -p ring:0.17.7 --precise 0.16.20 || true
35-
$(DOCKER_RUN) ${TAG_57} cargo update -p byteorder:1.5.0 --precise 0.4.3 || true
36-
$(DOCKER_RUN) ${TAG_57} cargo update -p webpki:0.22.4 --precise 0.22.0 || true
37-
$(DOCKER_RUN) ${TAG_57} cargo update -p crossbeam-epoch:0.9.17 --precise 0.9.15 || true
38-
$(DOCKER_RUN) ${TAG_57} cargo update -p byteorder:1.5.0 --precise 0.4.3 || true
39-
$(DOCKER_RUN) ${TAG_57} cargo test
40-
4117
test_63: builder_63
4218
rm -f Cargo.lock
4319
$(DOCKER_RUN) ${TAG_63} cargo test || true
44-
$(DOCKER_RUN) ${TAG_63} cargo update -p home:0.5.9 --precise 0.5.5 || true
45-
$(DOCKER_RUN) ${TAG_63} cargo update -p tokio:1.40.0 --precise 1.38.1 || 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
22+
$(DOCKER_RUN) ${TAG_63} cargo update -p tokio-macros:2.3.0 --precise 1.8.2 || true
4623
$(DOCKER_RUN) ${TAG_63} cargo update -p cc --precise 1.0.105 || true
4724
$(DOCKER_RUN) ${TAG_63} cargo test
4825

0 commit comments

Comments
 (0)