diff --git a/Cargo.lock b/Cargo.lock index 7568679..ed9aa1a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/cfd_protocol/Cargo.toml b/cfd_protocol/Cargo.toml index 3b648c4..8170ade 100644 --- a/cfd_protocol/Cargo.toml +++ b/cfd_protocol/Cargo.toml @@ -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" diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index 82cdbfa..f52c2f5 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -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"