From 52e4731d5ccfc0285b1e4eb73f8442a5ded22f6b Mon Sep 17 00:00:00 2001 From: theBitcoinDeveloper <96552652+theBitcoinDeveloper@users.noreply.github.com> Date: Wed, 22 Dec 2021 16:52:25 -0800 Subject: [PATCH] Update installation.md for different esplora features We must now must specify if you want the blocking esplora client based on ureq or the async version based on reqwest. --- docs/bdk-cli/installation.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/bdk-cli/installation.md b/docs/bdk-cli/installation.md index 536cc70c0a..f12d7fb074 100644 --- a/docs/bdk-cli/installation.md +++ b/docs/bdk-cli/installation.md @@ -26,8 +26,11 @@ Once Cargo is installed, you can proceed to install the interactive `bdk-cli` to the GitHub repository, by running: ```bash -# all features -cargo install --git https://github.com/bitcoindevkit/bdk-cli --features=esplora,compiler +# all features with the blocking esplora client +cargo install --git https://github.com/bitcoindevkit/bdk-cli --features=esplora-ureq,compiler + +# all features with the async esplora client +cargo install --git https://github.com/bitcoindevkit/bdk-cli --features=esplora-reqwest,compiler # minimal install cargo install --git https://github.com/bitcoindevkit/bdk-cli -- 2.49.0