Thomas Eizinger
3 years ago
No known key found for this signature in database
GPG Key ID: 651AC83A6C6C8B96
3 changed files with
8 additions and
6 deletions
-
Cargo.lock
-
cfd_protocol/Cargo.toml
-
daemon/Cargo.toml
|
|
@ -145,8 +145,9 @@ dependencies = [ |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "bdk" |
|
|
|
version = "0.11.1-dev" |
|
|
|
source = "git+https://github.com/bitcoindevkit/bdk/#8c21bcf40a1fe76637b65c3e483b6c46351f28fa" |
|
|
|
version = "0.12.0" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "ecf7e997526ceefbab7dd99fc0da6834ed8853bd051f53523415ed1dc82b870d" |
|
|
|
dependencies = [ |
|
|
|
"async-trait", |
|
|
|
"bdk-macros", |
|
|
@ -164,8 +165,9 @@ dependencies = [ |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "bdk-macros" |
|
|
|
version = "0.5.0" |
|
|
|
source = "git+https://github.com/bitcoindevkit/bdk/#8c21bcf40a1fe76637b65c3e483b6c46351f28fa" |
|
|
|
version = "0.6.0" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "81c1980e50ae23bb6efa9283ae8679d6ea2c6fa6a99fe62533f65f4a25a1a56c" |
|
|
|
dependencies = [ |
|
|
|
"proc-macro2", |
|
|
|
"quote", |
|
|
|
|
|
@ -5,7 +5,7 @@ edition = "2018" |
|
|
|
|
|
|
|
[dependencies] |
|
|
|
anyhow = "1" |
|
|
|
bdk = { git = "https://github.com/bitcoindevkit/bdk/" } |
|
|
|
bdk = { version = "0.12" } |
|
|
|
bit-vec = "0.6" |
|
|
|
itertools = "0.10" |
|
|
|
rand = "0.6" |
|
|
|
|
|
@ -7,7 +7,7 @@ edition = "2018" |
|
|
|
anyhow = "1" |
|
|
|
async-trait = "0.1.51" |
|
|
|
atty = "0.2" |
|
|
|
bdk = { git = "https://github.com/bitcoindevkit/bdk/" } |
|
|
|
bdk = { version = "0.12" } |
|
|
|
bytes = "1" |
|
|
|
cfd_protocol = { path = "../cfd_protocol" } |
|
|
|
clap = "3.0.0-beta.4" |
|
|
|