From: theBitcoinDeveloper <96552652+theBitcoinDeveloper@users.noreply.github.com> Date: Thu, 23 Dec 2021 00:52:25 +0000 (-0800) Subject: Update installation.md for different esplora features X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/scripts/static/enum.SignerError.html?a=commitdiff_plain;h=52e4731d5ccfc0285b1e4eb73f8442a5ded22f6b;p=bitcoindevkit.org 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. --- 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