Browse Source
Selectively depend on bdk features
fix-olivia-event-id
Thomas Eizinger
3 years ago
No known key found for this signature in database
GPG Key ID: 651AC83A6C6C8B96
2 changed files with
2 additions and
2 deletions
-
cfd_protocol/Cargo.toml
-
daemon/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" |
|
|
|
@ -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" |
|
|