File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 22
33Bitcoin 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
2527cargo update -p url --precise " 2.5.0"
2628cargo update -p tokio --precise " 1.38.1"
2729cargo update -p tokio-util --precise " 0.7.11"
28- ```
30+ ```
You can’t perform that action at this time.
0 commit comments