Skip to content

Commit

Permalink
Updated pin 8/28
Browse files Browse the repository at this point in the history
  • Loading branch information
willowens14 committed Aug 28, 2023
1 parent 8984654 commit d2b67e1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/cont_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ jobs:
cargo update -p cc --precise 1.0.81
cargo update -p tokio --precise 1.29.1
cargo update -p flate2 --precise 1.0.26
cargo update -p reqwest --precise "0.11.18"
cargo update -p h2 --precise "0.3.20"
- name: Build
run: cargo build --no-default-features --features repl,${{ matrix.features }}
- name: Clippy
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,10 @@ cargo update -p cc --precise 1.0.81
cargo update -p tokio --precise 1.29.1
# flate2 1.0.27 has MSRV 1.63.0+
cargo update -p flate2 --precise 1.0.26
# reqwest 0.11.19 has MSRV 1.63.0+
cargo update -p reqwest --precise "0.11.18"
# h2 0.3.21 has MSRV 1.63.0+
cargo update -p h2 --precise "0.3.20"
```

## Resources
Expand Down
4 changes: 1 addition & 3 deletions src/handlers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use bdk::{database::BatchDatabase, wallet::AddressIndex, Error, FeeRate, Keychai

use clap::Parser;

use crate::bitcoin::psbt::Input;

use bdk::bitcoin::consensus::encode::{deserialize, serialize, serialize_hex};
#[cfg(any(
feature = "electrum",
Expand Down Expand Up @@ -89,8 +89,6 @@ use rustyline::Editor;
use serde_json::json;
use std::str::FromStr;
// Import some modules for payjoin functionality from payjoin crate
use payjoin::{PjUriExt, UriExt};
use std::convert::TryFrom;

/// Execute an offline wallet sub-command
///
Expand Down

0 comments on commit d2b67e1

Please sign in to comment.