]> Untitled Git - bdk-cli/commitdiff
Add regex dependency, remove esplora from default feature
authorSteve Myers <steve@notmandatory.org>
Wed, 3 Feb 2021 06:10:43 +0000 (22:10 -0800)
committerSteve Myers <steve@notmandatory.org>
Wed, 3 Feb 2021 07:09:35 +0000 (23:09 -0800)
Cargo.toml

index 958b00c7489871311084c92a4e6f9b7a69d87951..0bfd8263807adc8283462dfde7ce5fe4633dfc99 100644 (file)
@@ -12,7 +12,7 @@ readme = "README.md"
 license = "MIT"
 
 [dependencies]
-bdk = { version = "^0.3", default-features = false }
+bdk = { git = "https://github.com/afilini/bdk.git", branch = "fix/better-derivable-key-api", features = ["all-keys"]}
 bdk-macros = "^0.2"
 structopt = "^0.3"
 serde_json = { version = "^1.0" }
@@ -25,10 +25,11 @@ rustyline = { version = "6.0", optional = true }
 dirs-next = { version = "2.0", optional = true }
 env_logger = { version = "0.7", optional = true }
 clap = { version = "2.33", optional = true }
+regex = {version = "1", optional = true }
 
 [features]
-default = ["repl", "esplora", "electrum", "bdk/key-value-db"]
-repl = ["async-trait", "rustyline", "dirs-next", "env_logger", "clap", "electrum"]
+default = ["repl", "electrum"]
+repl = ["async-trait", "rustyline", "dirs-next", "env_logger", "clap", "regex"]
 electrum = ["bdk/electrum"]
 esplora = ["bdk/esplora"]
 compiler = ["bdk/compiler"]