From: Steve Myers Date: Wed, 3 Feb 2021 06:10:43 +0000 (-0800) Subject: Add regex dependency, remove esplora from default feature X-Git-Tag: v0.2.0~27 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/struct.CommandStringError.html?a=commitdiff_plain;h=2f5f76638cb7a486924df0aac6e43dd929aaca05;p=bdk-cli Add regex dependency, remove esplora from default feature --- diff --git a/Cargo.toml b/Cargo.toml index 958b00c..0bfd826 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"]