From 2f5f76638cb7a486924df0aac6e43dd929aaca05 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Tue, 2 Feb 2021 22:10:43 -0800 Subject: [PATCH] Add regex dependency, remove esplora from default feature --- Cargo.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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"] -- 2.49.0