From: Matt Corallo Date: Tue, 17 Apr 2018 00:33:39 +0000 (-0400) Subject: Switch back to crates.io rust-bitcoin for 0.13 release X-Git-Tag: v0.0.12~412^2~10 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=1ae603cc3da268641d5802b09e7a8ec9057f3f7c;hp=69eb59b24d502f3df6f4dd3990aad99cc727385c;p=rust-lightning Switch back to crates.io rust-bitcoin for 0.13 release --- diff --git a/Cargo.toml b/Cargo.toml index 8e1946b1..ff8a83d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ non_bitcoin_chain_hash_routing = [] fuzztarget = ["secp256k1/fuzztarget", "bitcoin/fuzztarget"] [dependencies] -bitcoin = { git = "https://github.com/rust-bitcoin/rust-bitcoin" } +bitcoin = "0.13" rust-crypto = "0.2" rand = "0.4" secp256k1 = "0.9" diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 39f805d4..1d2e2442 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -13,7 +13,7 @@ honggfuzz_fuzz = ["honggfuzz"] [dependencies] lightning = { path = "..", features = ["fuzztarget"] } -bitcoin = { git = "https://github.com/rust-bitcoin/rust-bitcoin", features = ["fuzztarget"] } +bitcoin = { version = "0.13", features = ["fuzztarget"] } secp256k1 = { version = "0.9", features = ["fuzztarget"] } rust-crypto = "0.2" honggfuzz = { version = "0.5", optional = true }