Skip to content

Commit 111733e

Browse files
committed
Update github action and README
1 parent bd46422 commit 111733e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/code_coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Install grcov
3939
run: if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install grcov; fi
4040
- name: Test
41-
run: cargo test -- --test-threads=1
41+
run: cargo test --features tokio -- --test-threads=1
4242
- name: Run grcov
4343
run: mkdir coverage; grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '/*' -o ./coverage/lcov.info
4444
- name: Generate HTML coverage report

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
Bitcoin Esplora API client library. Supports plaintext, TLS and Onion servers. Blocking or async.
44

5+
If using the async client, you can choose between `tokio` or `async-std` as the runtime. One of these features must be enabled.
6+
57
<p>
68
<a href="https://crates.io/crates/esplora-client"><img alt="Crate Info" src="https://img.shields.io/crates/v/esplora-client.svg"/></a>
79
<a href="https://github.com/bitcoindevkit/rust-esplora-client/blob/master/LICENSE"><img alt="MIT Licensed" src="https://img.shields.io/badge/license-MIT-blue.svg"/></a>
@@ -25,4 +27,4 @@ cargo update -p home --precise 0.5.5
2527
cargo update -p url --precise "2.5.0"
2628
cargo update -p tokio --precise "1.38.1"
2729
cargo update -p tokio-util --precise "0.7.11"
28-
```
30+
```

0 commit comments

Comments
 (0)