From 08a5e1291c59ea451bb37d220df0331a41dff306 Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Fri, 22 Mar 2019 15:37:12 +0000 Subject: [PATCH] update `rust-bitcoin` to 0.18 --- Cargo.toml | 4 ++-- fuzz/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 74bbe703..3585d491 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elements" -version = "0.6.0" +version = "0.7.0" authors = ["Andrew Poelstra "] description = "Library with support for de/serialization, parsing and executing on data structures and network messages related to Elements" license = "CC0-1.0" @@ -21,7 +21,7 @@ bitcoin_hashes = "0.3.0" secp256k1 = "0.12.0" [dependencies.bitcoin] -version = "0.17.0" +version = "0.18.0" [dependencies.serde] version = "1.0" diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index f3548769..230aac85 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -17,7 +17,7 @@ afl = { version = "0.3", optional = true } elements = { path = "..", features = ["fuzztarget", "serde-feature"] } [dependencies.bitcoin] -version = "0.17" +version = "0.18" # Prevent this from interfering with workspaces [workspace]