Browse Source

Update to bdk 0.12

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

10
Cargo.lock

@ -145,8 +145,9 @@ dependencies = [
[[package]] [[package]]
name = "bdk" name = "bdk"
version = "0.11.1-dev" version = "0.12.0"
source = "git+https://github.com/bitcoindevkit/bdk/#8c21bcf40a1fe76637b65c3e483b6c46351f28fa" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ecf7e997526ceefbab7dd99fc0da6834ed8853bd051f53523415ed1dc82b870d"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"bdk-macros", "bdk-macros",
@ -164,8 +165,9 @@ dependencies = [
[[package]] [[package]]
name = "bdk-macros" name = "bdk-macros"
version = "0.5.0" version = "0.6.0"
source = "git+https://github.com/bitcoindevkit/bdk/#8c21bcf40a1fe76637b65c3e483b6c46351f28fa" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81c1980e50ae23bb6efa9283ae8679d6ea2c6fa6a99fe62533f65f4a25a1a56c"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

2
cfd_protocol/Cargo.toml

@ -5,7 +5,7 @@ edition = "2018"
[dependencies] [dependencies]
anyhow = "1" anyhow = "1"
bdk = { git = "https://github.com/bitcoindevkit/bdk/" } bdk = { version = "0.12" }
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 = { git = "https://github.com/bitcoindevkit/bdk/" } bdk = { version = "0.12" }
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