Browse Source

Selectively depend on bdk features

fix-olivia-event-id
Thomas Eizinger 3 years ago
parent
commit
57fe104d9c
No known key found for this signature in database GPG Key ID: 651AC83A6C6C8B96
  1. 2
      cfd_protocol/Cargo.toml
  2. 2
      daemon/Cargo.toml

2
cfd_protocol/Cargo.toml

@ -5,7 +5,7 @@ edition = "2018"
[dependencies] [dependencies]
anyhow = "1" anyhow = "1"
bdk = { version = "0.12" } bdk = { version = "0.12", default-features = false }
bit-vec = "0.6" bit-vec = "0.6"
itertools = "0.10" itertools = "0.10"
rand = "0.6" rand = "0.6"

2
daemon/Cargo.toml

@ -7,7 +7,7 @@ edition = "2018"
anyhow = "1" anyhow = "1"
async-trait = "0.1.51" async-trait = "0.1.51"
atty = "0.2" atty = "0.2"
bdk = { version = "0.12" } bdk = { version = "0.12", default-features = false, features = ["key-value-db", "electrum"] }
bytes = "1" bytes = "1"
cfd_protocol = { path = "../cfd_protocol" } cfd_protocol = { path = "../cfd_protocol" }
clap = "3.0.0-beta.4" clap = "3.0.0-beta.4"

Loading…
Cancel
Save