From 2b1e02cbd59b81fe86395c4cf638b9efd9926244 Mon Sep 17 00:00:00 2001 From: Rob N Date: Tue, 12 Nov 2024 11:05:08 -1000 Subject: [PATCH 1/2] Bump `rusqlite` to `0.31` --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 73fe0a1b7..f22092cb5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,7 +61,7 @@ bdk_esplora = { version = "=0.18.0", default-features = false, features = ["asyn bdk_wallet = { version = "=1.0.0-beta.4", default-features = false, features = ["std", "keys-bip39"]} reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] } -rusqlite = { version = "0.28.0", features = ["bundled"] } +rusqlite = { version = "0.31.0", features = ["bundled"] } bitcoin = "0.32.2" bip39 = "2.0.0" bip21 = { version = "0.5", features = ["std"], default-features = false } From f1e702dc60e564a5831ec76d907d61d7bca393b3 Mon Sep 17 00:00:00 2001 From: Rob N Date: Mon, 18 Nov 2024 08:43:11 -1000 Subject: [PATCH 2/2] Remove pin on `hashlink` `hashlink` `0.9.1` is a member of `rusqlite` `0.31.0`, which uses `hashbrown`. Previously `hashbrown` broke MSRV on a patch version (0.14.4), but `hashlink` uses the next minor version of `hashbrown` (0.15.1) which does adhere MSRV --- .github/workflows/rust.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ec6506857..a167c459e 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -45,7 +45,6 @@ jobs: - name: Pin packages to allow for MSRV if: matrix.msrv run: | - cargo update -p hashlink --precise "0.8.2" --verbose # hashlink 0.8.3 requires hashbrown 0.14, requiring 1.64.0 cargo update -p proptest --precise "1.2.0" --verbose # proptest 1.3.0 requires rustc 1.64.0 cargo update -p regex --precise "1.9.6" --verbose # regex 1.10.0 requires rustc 1.65.0 cargo update -p home --precise "0.5.5" --verbose # home v0.5.9 requires rustc 1.70 or newer