Skip to content

Commit c487b31

Browse files
committed
Merge #75: Replace ureq with minreq for blocking
6a598b2 ci: remove MSRV pinning for jobserver dependency (Steve Myers) 973c768 chore: remove deprecated get_header() function (Steve Myers) df9c694 refactor(blocking): replace ureq with minreq (Steve Myers) Pull request description: Taking this over from #57. So far just a few minor adjustments on top of #57. Tested that syncing LDK works with the updated blocking client (in addition to the tests here). ACKs for top commit: notmandatory: ACK 6a598b2 Tree-SHA512: 19488ffbf19c59912c379ee77083ee56f7af7fd7b764f8e6c0b96f574d456a86cefdbacb6bf31dc8c1b3317e139a3ed1b54211c8ccfe55e5ad427c512a16b723
2 parents e5fb3a3 + 6a598b2 commit c487b31

File tree

7 files changed

+216
-341
lines changed

7 files changed

+216
-341
lines changed

.github/workflows/cont_integration.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ jobs:
2222
features:
2323
- default
2424
- blocking
25+
- blocking-https
26+
- blocking-https-rustls
27+
- blocking-https-native
28+
- blocking-https-bundled
2529
- async
2630
- async-https
2731
- async-https-native
@@ -53,7 +57,6 @@ jobs:
5357
run: |
5458
cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5"
5559
cargo update -p time --precise "0.3.20"
56-
cargo update -p jobserver --precise "0.1.26"
5760
cargo update -p home --precise 0.5.5
5861
- name: Build
5962
run: cargo build --features ${{ matrix.features }} --no-default-features

Cargo.toml

+6-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ serde = { version = "1.0", features = ["derive"] }
2121
bitcoin = { version = "0.31.0", features = ["serde", "std"], default-features = false }
2222
hex = { package = "hex-conservative", version = "*" }
2323
log = "^0.4"
24-
ureq = { version = "2.5.0", features = ["json"], optional = true }
24+
minreq = { version = "2.11.0", features = ["json-using-serde"], optional = true }
2525
reqwest = { version = "0.11", optional = true, default-features = false, features = ["json"] }
2626

2727
[dev-dependencies]
@@ -32,7 +32,11 @@ lazy_static = "1.4.0"
3232

3333
[features]
3434
default = ["blocking", "async", "async-https"]
35-
blocking = ["ureq", "ureq/socks-proxy"]
35+
blocking = ["minreq", "minreq/proxy"]
36+
blocking-https = ["blocking", "minreq/https"]
37+
blocking-https-rustls = ["blocking", "minreq/https-rustls"]
38+
blocking-https-native = ["blocking", "minreq/https-native"]
39+
blocking-https-bundled = ["blocking", "minreq/https-bundled"]
3640
async = ["reqwest", "reqwest/socks"]
3741
async-https = ["async", "reqwest/default-tls"]
3842
async-https-native = ["async", "reqwest/native-tls"]

README.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,4 @@ Bitcoin Esplora API client library. Supports plaintext, TLS and Onion servers. B
1313
</p>
1414

1515
## Minimum Supported Rust Version (MSRV)
16-
This library should compile with any combination of features with Rust 1.63.0.
17-
18-
To build with the MSRV you will need to pin dependencies as follows:
19-
20-
```shell
21-
cargo update -p jobserver --precise "0.1.26"
22-
```
16+
This library should compile with any combination of features with Rust 1.63.0.

src/api.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
55
pub use bitcoin::consensus::{deserialize, serialize};
66
pub use bitcoin::hex::FromHex;
7-
pub use bitcoin::{transaction, Amount, BlockHash, OutPoint, ScriptBuf, Transaction, TxIn, TxOut, Txid, Witness};
7+
pub use bitcoin::{
8+
transaction, Amount, BlockHash, OutPoint, ScriptBuf, Transaction, TxIn, TxOut, Txid, Witness,
9+
};
810

911
use serde::Deserialize;
1012

src/async.rs

+1-11
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ use std::collections::HashMap;
1515
use std::str::FromStr;
1616

1717
use bitcoin::consensus::{deserialize, serialize};
18-
use bitcoin::hex::{DisplayHex, FromHex};
1918
use bitcoin::hashes::{sha256, Hash};
19+
use bitcoin::hex::{DisplayHex, FromHex};
2020
use bitcoin::{
2121
block::Header as BlockHeader, Block, BlockHash, MerkleBlock, Script, Transaction, Txid,
2222
};
@@ -131,16 +131,6 @@ impl AsyncClient {
131131
}
132132
}
133133

134-
#[deprecated(
135-
since = "0.2.0",
136-
note = "Deprecated to improve alignment with Esplora API. Users should use `get_block_hash` and `get_header_by_hash` methods directly."
137-
)]
138-
/// Get a [`BlockHeader`] given a particular block height.
139-
pub async fn get_header(&self, block_height: u32) -> Result<BlockHeader, Error> {
140-
let block_hash = self.get_block_hash(block_height).await?;
141-
self.get_header_by_hash(&block_hash).await
142-
}
143-
144134
/// Get a [`BlockHeader`] given a particular block hash.
145135
pub async fn get_header_by_hash(&self, block_hash: &BlockHash) -> Result<BlockHeader, Error> {
146136
let resp = self

0 commit comments

Comments
 (0)