Skip to content

Commit e4a23af

Browse files
committed
Merge #95: chore: upgrade and bump some CI dependencies
1a4d5cf chore(rust+clippy): bump `edition` to 2021, and add `.clippy.toml` (Leonardo Lima) b7636e8 fix(fmt): apply suggested fixes from `rustfmt` (Leonardo Lima) 3f2ca2f refactor(ci)!: add new `fmt` and `clippy` jobs (Leonardo Lima) 9f888c1 chore(deps): bump `actions/checkout` from v3 to v4 (Leonardo Lima) Pull request description: <!-- You can erase any parts of this template not applicable to your Pull Request. --> ### Description This PR does some improvements on CI, these are some changes that I ended up doing on other refactoring and feature PRs (making them too convoluted), but had a specific CI scope so I'm moving them to a specific PR. This PR does: - bump the `actions/checkout@v3` to `actions/checkout@v4`. - adds two new jobs for `fmt` and `clippy` (clippy has been moved to a specific job). - fix the newly found `fmt` problems. - bump the rust edition to `2021`. - adds `.clippy.toml` file with `msrv=1.63.0`. <!-- Describe the purpose of this PR, what's being adding and/or fixed --> ### Notes to the reviewers I hope this PR reduces the scope convolution from the other ones #67 #93, and makes the review easier. <!-- In this section you can include notes directed to the reviewers, like explaining why some parts of the PR were done in a specific way --> ### Changelog notice - Bump the `actions/checkout@v3` to `actions/checkout@v4`. - Adds two new jobs for `fmt` and `clippy` (clippy has been moved to a specific job). - Multiple fixes for the newly found `fmt` problems. - Bump the rust edition to `2021`. - Adds `.clippy.toml` file with `msrv=1.63.0`. <!-- Notice the release manager should include in the release tag message changelog --> <!-- See https://keepachangelog.com/en/1.0.0/ for examples --> ### Checklists #### All Submissions: * [x] I've signed all my commits * [x] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md) * [x] I ran `cargo fmt` and `cargo clippy` before committing ACKs for top commit: ValuedMammal: ACK 1a4d5cf notmandatory: ACK 1a4d5cf Tree-SHA512: e693baeea112dffa12ccc576271f38f3188dc24669a70af7196e33e5eea08c5d82940792330682b8a4b1ec48ef98e1cbaa2f713736f393555744fdf44d79a26a
2 parents d008b9b + 1a4d5cf commit e4a23af

File tree

7 files changed

+100
-47
lines changed

7 files changed

+100
-47
lines changed

.clippy.toml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
msrv="1.63.0"
+49-14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Rust
1+
name: CI
22

33
on:
44
push:
@@ -11,13 +11,12 @@ env:
1111

1212
jobs:
1313
build-test:
14-
14+
name: Build & Test
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
1818
rust:
1919
- version: stable # STABLE
20-
clippy: true
2120
- version: 1.63.0 # MSRV
2221
features:
2322
- default
@@ -32,27 +31,27 @@ jobs:
3231
- async-https-rustls
3332
- async-https-rustls-manual-roots
3433
steps:
35-
- uses: actions/checkout@v3
34+
- name: Checkout
35+
uses: actions/checkout@v4
3636
- name: Generate cache key
3737
run: echo "${{ matrix.rust.version }} ${{ matrix.features }}" | tee .cache_key
38-
- name: cache
38+
- name: Rust Cache
3939
uses: actions/cache@v3
4040
with:
4141
path: |
4242
~/.cargo/registry
4343
~/.cargo/git
4444
target
4545
key: ${{ runner.os }}-cargo-${{ hashFiles('.cache_key') }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}
46-
- name: Set default toolchain
47-
run: rustup default ${{ matrix.rust.version }}
46+
- name: Install Rust Toolchain
47+
uses: dtolnay/rust-toolchain@v1
48+
with:
49+
toolchain: ${{ matrix.rust.version }}
4850
- name: Set profile
4951
run: rustup set profile minimal
50-
- name: Add clippy
51-
if: ${{ matrix.rust.clippy }}
52-
run: rustup component add clippy
5352
- name: Update toolchain
5453
run: rustup update
55-
- name: pin dependencies
54+
- name: Pin dependencies for MSRV
5655
if: matrix.rust.version == '1.63.0'
5756
run: |
5857
cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5"
@@ -62,8 +61,44 @@ jobs:
6261
cargo update -p tokio --precise "1.38.1"
6362
- name: Build
6463
run: cargo build --features ${{ matrix.features }} --no-default-features
65-
- name: Clippy
66-
if: ${{ matrix.rust.clippy }}
67-
run: cargo clippy --all-targets --features ${{ matrix.features }} --no-default-features -- -D warnings
6864
- name: Test
6965
run: cargo test --features ${{ matrix.features }} --no-default-features -- --test-threads=1
66+
67+
fmt:
68+
name: Rust Formatting
69+
runs-on: ubuntu-latest
70+
steps:
71+
- name: Checkout
72+
uses: actions/checkout@v4
73+
- name: Install Rust Toolchain
74+
uses: dtolnay/rust-toolchain@v1
75+
with:
76+
toolchain: nightly
77+
components: rustfmt
78+
- name: Check fmt
79+
run: cargo fmt --all --check
80+
81+
clippy:
82+
name: Rust Clippy
83+
runs-on: ubuntu-latest
84+
steps:
85+
- name: Checkout
86+
uses: actions/checkout@v4
87+
- name: Install Rust Toolchain
88+
uses: dtolnay/rust-toolchain@v1
89+
with:
90+
toolchain: stable
91+
components: clippy
92+
- name: Rust Cache
93+
uses: actions/cache@v3
94+
with:
95+
path: |
96+
~/.cargo/registry
97+
~/.cargo/git
98+
target
99+
key: ${{ runner.os }}-cargo-${{ hashFiles('.cache_key') }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}
100+
- name: Check clippy
101+
uses: actions-rs/clippy-check@v1
102+
with:
103+
token: ${{ secrets.GITHUB_TOKEN }}
104+
args: --all-features --all-targets -- -D warnings

.rustfmt.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
format_code_in_doc_comments=true
2+
wrap_comments=true
3+
comment_width=100

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "esplora-client"
33
version = "0.9.0"
4-
edition = "2018"
4+
edition = "2021"
55
authors = ["Alekos Filini <[email protected]>"]
66
license = "MIT"
77
homepage = "https://github.com/bitcoindevkit/rust-esplora-client"

src/async.rs

+16-10
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ impl AsyncClient {
100100
}
101101
}
102102

103-
/// Get a [`Txid`] of a transaction given its index in a block with a given hash.
103+
/// Get a [`Txid`] of a transaction given its index in a block with a given
104+
/// hash.
104105
pub async fn get_txid_at_block_index(
105106
&self,
106107
block_hash: &BlockHash,
@@ -222,7 +223,8 @@ impl AsyncClient {
222223
}
223224
}
224225

225-
/// Get a merkle inclusion proof for a [`Transaction`] with the given [`Txid`].
226+
/// Get a merkle inclusion proof for a [`Transaction`] with the given
227+
/// [`Txid`].
226228
pub async fn get_merkle_proof(&self, tx_hash: &Txid) -> Result<Option<MerkleProof>, Error> {
227229
let resp = self
228230
.client
@@ -244,7 +246,8 @@ impl AsyncClient {
244246
}
245247
}
246248

247-
/// Get a [`MerkleBlock`] inclusion proof for a [`Transaction`] with the given [`Txid`].
249+
/// Get a [`MerkleBlock`] inclusion proof for a [`Transaction`] with the
250+
/// given [`Txid`].
248251
pub async fn get_merkle_block(&self, tx_hash: &Txid) -> Result<Option<MerkleBlock>, Error> {
249252
let resp = self
250253
.client
@@ -267,7 +270,8 @@ impl AsyncClient {
267270
}
268271
}
269272

270-
/// Get the spending status of an output given a [`Txid`] and the output index.
273+
/// Get the spending status of an output given a [`Txid`] and the output
274+
/// index.
271275
pub async fn get_output_status(
272276
&self,
273277
txid: &Txid,
@@ -372,7 +376,8 @@ impl AsyncClient {
372376

373377
/// Get confirmed transaction history for the specified address/scripthash,
374378
/// sorted with newest first. Returns 25 transactions per page.
375-
/// More can be requested by specifying the last txid seen by the previous query.
379+
/// More can be requested by specifying the last txid seen by the previous
380+
/// query.
376381
pub async fn scripthash_txs(
377382
&self,
378383
script: &Script,
@@ -399,8 +404,8 @@ impl AsyncClient {
399404
}
400405
}
401406

402-
/// Get an map where the key is the confirmation target (in number of blocks)
403-
/// and the value is the estimated feerate (in sat/vB).
407+
/// Get an map where the key is the confirmation target (in number of
408+
/// blocks) and the value is the estimated feerate (in sat/vB).
404409
pub async fn get_fee_estimates(&self) -> Result<HashMap<u16, f64>, Error> {
405410
let resp = self
406411
.client
@@ -418,10 +423,11 @@ impl AsyncClient {
418423
}
419424
}
420425

421-
/// Gets some recent block summaries starting at the tip or at `height` if provided.
426+
/// Gets some recent block summaries starting at the tip or at `height` if
427+
/// provided.
422428
///
423-
/// The maximum number of summaries returned depends on the backend itself: esplora returns `10`
424-
/// while [mempool.space](https://mempool.space/docs/api) returns `15`.
429+
/// The maximum number of summaries returned depends on the backend itself:
430+
/// esplora returns `10` while [mempool.space](https://mempool.space/docs/api) returns `15`.
425431
pub async fn get_blocks(&self, height: Option<u32>) -> Result<Vec<BlockSummary>, Error> {
426432
let url = match height {
427433
Some(height) => format!("{}/blocks/{}", self.url, height),

src/blocking.rs

+16-10
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,8 @@ impl BlockingClient {
199199
}
200200
}
201201

202-
/// Get a [`Txid`] of a transaction given its index in a block with a given hash.
202+
/// Get a [`Txid`] of a transaction given its index in a block with a given
203+
/// hash.
203204
pub fn get_txid_at_block_index(
204205
&self,
205206
block_hash: &BlockHash,
@@ -233,17 +234,20 @@ impl BlockingClient {
233234
self.get_opt_response(&format!("/block/{}/raw", block_hash))
234235
}
235236

236-
/// Get a merkle inclusion proof for a [`Transaction`] with the given [`Txid`].
237+
/// Get a merkle inclusion proof for a [`Transaction`] with the given
238+
/// [`Txid`].
237239
pub fn get_merkle_proof(&self, txid: &Txid) -> Result<Option<MerkleProof>, Error> {
238240
self.get_opt_response_json(&format!("/tx/{}/merkle-proof", txid))
239241
}
240242

241-
/// Get a [`MerkleBlock`] inclusion proof for a [`Transaction`] with the given [`Txid`].
243+
/// Get a [`MerkleBlock`] inclusion proof for a [`Transaction`] with the
244+
/// given [`Txid`].
242245
pub fn get_merkle_block(&self, txid: &Txid) -> Result<Option<MerkleBlock>, Error> {
243246
self.get_opt_response_hex(&format!("/tx/{}/merkleblock-proof", txid))
244247
}
245248

246-
/// Get the spending status of an output given a [`Txid`] and the output index.
249+
/// Get the spending status of an output given a [`Txid`] and the output
250+
/// index.
247251
pub fn get_output_status(
248252
&self,
249253
txid: &Txid,
@@ -299,15 +303,16 @@ impl BlockingClient {
299303
.map(|s| BlockHash::from_str(s.as_str()).map_err(Error::HexToArray))?
300304
}
301305

302-
/// Get an map where the key is the confirmation target (in number of blocks)
303-
/// and the value is the estimated feerate (in sat/vB).
306+
/// Get an map where the key is the confirmation target (in number of
307+
/// blocks) and the value is the estimated feerate (in sat/vB).
304308
pub fn get_fee_estimates(&self) -> Result<HashMap<u16, f64>, Error> {
305309
self.get_response_json("/fee-estimates")
306310
}
307311

308312
/// Get confirmed transaction history for the specified address/scripthash,
309313
/// sorted with newest first. Returns 25 transactions per page.
310-
/// More can be requested by specifying the last txid seen by the previous query.
314+
/// More can be requested by specifying the last txid seen by the previous
315+
/// query.
311316
pub fn scripthash_txs(
312317
&self,
313318
script: &Script,
@@ -321,10 +326,11 @@ impl BlockingClient {
321326
self.get_response_json(&path)
322327
}
323328

324-
/// Gets some recent block summaries starting at the tip or at `height` if provided.
329+
/// Gets some recent block summaries starting at the tip or at `height` if
330+
/// provided.
325331
///
326-
/// The maximum number of summaries returned depends on the backend itself: esplora returns `10`
327-
/// while [mempool.space](https://mempool.space/docs/api) returns `15`.
332+
/// The maximum number of summaries returned depends on the backend itself:
333+
/// esplora returns `10` while [mempool.space](https://mempool.space/docs/api) returns `15`.
328334
pub fn get_blocks(&self, height: Option<u32>) -> Result<Vec<BlockSummary>, Error> {
329335
let path = match height {
330336
Some(height) => format!("/blocks/{}", height),

src/lib.rs

+14-12
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,12 @@
4141
//! specific features, set `default-features` to `false` in your `Cargo.toml`
4242
//! and specify the features you want. This will look like this:
4343
//!
44-
//! `esplora-client = { version = "*", default-features = false, features = ["blocking"] }`
44+
//! `esplora-client = { version = "*", default-features = false, features =
45+
//! ["blocking"] }`
4546
//!
4647
//! * `blocking` enables [`minreq`], the blocking client with proxy.
47-
//! * `blocking-https` enables [`minreq`], the blocking client with proxy and TLS (SSL)
48-
//! capabilities using the default [`minreq`] backend.
48+
//! * `blocking-https` enables [`minreq`], the blocking client with proxy and TLS (SSL) capabilities
49+
//! using the default [`minreq`] backend.
4950
//! * `blocking-https-rustls` enables [`minreq`], the blocking client with proxy and TLS (SSL)
5051
//! capabilities using the `rustls` backend.
5152
//! * `blocking-https-native` enables [`minreq`], the blocking client with proxy and TLS (SSL)
@@ -62,8 +63,6 @@
6263
//! * `async-https-rustls-manual-roots` enables [`reqwest`], the async client with support for
6364
//! proxying and TLS (SSL) using the `rustls` TLS backend without using its the default root
6465
//! certificates.
65-
//!
66-
//!
6766
6867
#![allow(clippy::result_large_err)]
6968

@@ -89,7 +88,8 @@ pub use r#async::AsyncClient;
8988
/// Get a fee value in sats/vbytes from the estimates
9089
/// that matches the confirmation target set as parameter.
9190
///
92-
/// Returns `None` if no feerate estimate is found at or below `target` confirmations.
91+
/// Returns `None` if no feerate estimate is found at or below `target`
92+
/// confirmations.
9393
pub fn convert_fee_rate(target: usize, estimates: HashMap<u16, f64>) -> Option<f32> {
9494
estimates
9595
.into_iter()
@@ -103,11 +103,13 @@ pub struct Builder {
103103
pub base_url: String,
104104
/// Optional URL of the proxy to use to make requests to the Esplora server
105105
///
106-
/// The string should be formatted as: `<protocol>://<user>:<password>@host:<port>`.
106+
/// The string should be formatted as:
107+
/// `<protocol>://<user>:<password>@host:<port>`.
107108
///
108-
/// Note that the format of this value and the supported protocols change slightly between the
109-
/// blocking version of the client (using `minreq`) and the async version (using `reqwest`). For more
110-
/// details check with the documentation of the two crates. Both of them are compiled with
109+
/// Note that the format of this value and the supported protocols change
110+
/// slightly between the blocking version of the client (using `minreq`)
111+
/// and the async version (using `reqwest`). For more details check with
112+
/// the documentation of the two crates. Both of them are compiled with
111113
/// the `socks` feature enabled.
112114
///
113115
/// The proxy is ignored when targeting `wasm32`.
@@ -594,8 +596,8 @@ mod test {
594596
#[cfg(all(feature = "blocking", feature = "async"))]
595597
#[tokio::test]
596598
async fn test_get_non_existing_block_status() {
597-
// Esplora returns the same status for orphaned blocks as for non-existing blocks:
598-
// non-existing: https://blockstream.info/api/block/0000000000000000000000000000000000000000000000000000000000000000/status
599+
// Esplora returns the same status for orphaned blocks as for non-existing
600+
// blocks: non-existing: https://blockstream.info/api/block/0000000000000000000000000000000000000000000000000000000000000000/status
599601
// orphaned: https://blockstream.info/api/block/000000000000000000181b1a2354620f66868a723c0c4d5b24e4be8bdfc35a7f/status
600602
// (Here the block is cited as orphaned: https://bitcoinchain.com/block_explorer/block/000000000000000000181b1a2354620f66868a723c0c4d5b24e4be8bdfc35a7f/ )
601603
// For this reason, we only test for the non-existing case here.

0 commit comments

Comments
 (0)