Skip to content

Commit d2b67e1

Browse files
committed
Updated pin 8/28
1 parent 8984654 commit d2b67e1

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/cont_integration.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ jobs:
5959
cargo update -p cc --precise 1.0.81
6060
cargo update -p tokio --precise 1.29.1
6161
cargo update -p flate2 --precise 1.0.26
62+
cargo update -p reqwest --precise "0.11.18"
63+
cargo update -p h2 --precise "0.3.20"
64+
6265
- name: Build
6366
run: cargo build --no-default-features --features repl,${{ matrix.features }}
6467
- name: Clippy

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,10 @@ cargo update -p cc --precise 1.0.81
139139
cargo update -p tokio --precise 1.29.1
140140
# flate2 1.0.27 has MSRV 1.63.0+
141141
cargo update -p flate2 --precise 1.0.26
142+
# reqwest 0.11.19 has MSRV 1.63.0+
143+
cargo update -p reqwest --precise "0.11.18"
144+
# h2 0.3.21 has MSRV 1.63.0+
145+
cargo update -p h2 --precise "0.3.20"
142146
```
143147

144148
## Resources

src/handlers.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ use bdk::{database::BatchDatabase, wallet::AddressIndex, Error, FeeRate, Keychai
2626

2727
use clap::Parser;
2828

29-
use crate::bitcoin::psbt::Input;
29+
3030
use bdk::bitcoin::consensus::encode::{deserialize, serialize, serialize_hex};
3131
#[cfg(any(
3232
feature = "electrum",
@@ -89,8 +89,6 @@ use rustyline::Editor;
8989
use serde_json::json;
9090
use std::str::FromStr;
9191
// Import some modules for payjoin functionality from payjoin crate
92-
use payjoin::{PjUriExt, UriExt};
93-
use std::convert::TryFrom;
9492

9593
/// Execute an offline wallet sub-command
9694
///

0 commit comments

Comments
 (0)