Skip to content

Commit

Permalink
Update cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
rajarshimaitra committed Sep 17, 2021
1 parent 4a735a1 commit 88621be
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ readme = "README.md"
license = "MIT"

[dependencies]
bdk = { version = "0.10.0", default-features = false, features = ["all-keys"]}
#bdk = { version = "0.10.0", default-features = false, features = ["all-keys"]}
# Use bdk master to have correct esplora-request capabilities
# Remove in next release of bdk.
bdk = { git = "https://github.com/bitcoindevkit/bdk", branch = "master", default-features = false, features = ["all-keys"]}
bdk-macros = "^0.4"
structopt = "^0.3"
serde_json = { version = "^1.0" }
Expand All @@ -32,9 +35,10 @@ default = ["cli", "repl"]
cli = ["bdk/key-value-db", "clap", "dirs-next", "env_logger"]
repl = ["regex", "rustyline"]
electrum = ["bdk/electrum"]
esplora = ["bdk/use-esplora-ureq"]
esplora = []
esplora-ureq = ["esplora", "bdk/use-esplora-ureq"]
esplora-reqwest = ["esplora", "bdk/use-esplora-reqwest"]
compiler = ["bdk/compiler"]
async-interface = ["bdk/async-interface"]
compact_filters = ["bdk/compact_filters"]

[[bin]]
Expand Down

0 comments on commit 88621be

Please sign in to comment.