From 56b32da408db13f423793ba9eea1293d6e4cf954 Mon Sep 17 00:00:00 2001 From: valued mammal Date: Thu, 17 Oct 2024 11:16:44 -0400 Subject: [PATCH 1/2] deps: update rusqlite to 0.31 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 50f3fd22d..53e2b1359 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ rand = "^0.8" sled = { version = "0.34", optional = true } electrum-client = { version = "0.18", optional = true } esplora-client = { version = "0.6", default-features = false, optional = true } -rusqlite = { version = "0.27.0", optional = true } +rusqlite = { version = "0.31.0", optional = true } futures = { version = "0.3", optional = true } async-trait = { version = "0.1", optional = true } rocksdb = { version = "0.18", default-features = false, features = ["snappy"], optional = true } @@ -130,7 +130,7 @@ path = "examples/policy.rs" [[example]] name = "rpcwallet" path = "examples/rpcwallet.rs" -required-features = ["keys-bip39", "key-value-db", "rpc", "electrsd/bitcoind_23_0"] +required-features = ["keys-bip39", "key-value-db", "rpc", "electrsd/bitcoind_22_0"] [[example]] name = "psbt_signer" From b7dad9f1ab96f15116eefff2affe09d80f0c9e7f Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Fri, 22 Nov 2024 16:18:12 -0600 Subject: [PATCH 2/2] ci: pin msrv deps url, rustls@0.23.18, hashbrown@0.15.1 --- .github/workflows/cont_integration.yml | 3 +++ README.md | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 078419274..a7f12c393 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -63,6 +63,9 @@ jobs: cargo update -p home --precise "0.5.5" cargo update -p regex --precise "1.7.3" cargo update -p security-framework-sys --precise "2.11.1" + cargo update -p url --precise "2.5.0" + cargo update -p rustls@0.23.18 --precise "0.23.17" + cargo update -p hashbrown@0.15.1 --precise "0.15.0" - name: Build run: cargo build --features bitcoin/std,miniscript/std,${{ matrix.features }} --no-default-features - name: Clippy diff --git a/README.md b/README.md index 68202814b..1e68f70ff 100644 --- a/README.md +++ b/README.md @@ -214,4 +214,7 @@ cargo update -p tokio-util --precise "0.7.11" cargo update -p home --precise "0.5.5" cargo update -p regex --precise "1.7.3" cargo update -p security-framework-sys --precise "2.11.1" +cargo update -p url --precise "2.5.0" +cargo update -p rustls@0.23.18 --precise "0.23.17" +cargo update -p hashbrown@0.15.1 --precise "0.15.0" ```