Skip to content

Commit a69e258

Browse files
committed
Bump rusqlite to 0.31
1 parent c08c3d5 commit a69e258

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,15 @@ jobs:
4545
- name: Pin packages to allow for MSRV
4646
if: matrix.msrv
4747
run: |
48-
cargo update -p hashlink --precise "0.8.2" --verbose # hashlink 0.8.3 requires hashbrown 0.14, requiring 1.64.0
4948
cargo update -p proptest --precise "1.2.0" --verbose # proptest 1.3.0 requires rustc 1.64.0
5049
cargo update -p regex --precise "1.9.6" --verbose # regex 1.10.0 requires rustc 1.65.0
5150
cargo update -p home --precise "0.5.5" --verbose # home v0.5.9 requires rustc 1.70 or newer
5251
cargo update -p tokio --precise "1.38.1" --verbose # tokio v1.39.0 requires rustc 1.70 or newer
5352
cargo update -p tokio-util --precise "0.7.11" --verbose # tokio-util v0.7.12 requires rustc 1.70 or newer
5453
cargo update -p idna_adapter --precise "1.1.0" --verbose # url 2.5.3 switched to idna 1.0.3 and ICU4X, which requires rustc 1.67 or newer. Here we opt to keep using unicode-rs by pinning idna_adapter as described here: https://docs.rs/crate/idna_adapter/1.2.0
5554
cargo update -p indexmap --precise "2.5.0" --verbose # indexmap 2.6.0 upgraded to hashbrown 0.15, which unfortunately bumped their MSRV to rustc 1.65 with the 0.15.1 release
55+
cargo update -p cc --precise "1.0.105" --verbose # cc 1.0.106 bumps MSRV to 1.67
56+
cargo update -p time --precise "0.3.20" --verbose # time 0.3.21 bumps MSRV to 1.65
5657
- name: Set RUSTFLAGS to deny warnings
5758
if: "matrix.toolchain == 'stable'"
5859
run: echo "RUSTFLAGS=-D warnings" >> "$GITHUB_ENV"

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ bdk_esplora = { version = "=0.18.0", default-features = false, features = ["asyn
6161
bdk_wallet = { version = "=1.0.0-beta.4", default-features = false, features = ["std", "keys-bip39"]}
6262

6363
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
64-
rusqlite = { version = "0.28.0", features = ["bundled"] }
64+
rusqlite = { version = "0.31.0", features = ["bundled"] }
6565
bitcoin = "0.32.2"
6666
bip39 = "2.0.0"
6767
bip21 = { version = "0.5", features = ["std"], default-features = false }

0 commit comments

Comments
 (0)