From 04f4b349f7b26a6963faf8417a8ad7bd4e720510 Mon Sep 17 00:00:00 2001 From: Leonardo Lima Date: Fri, 3 May 2024 18:07:21 -0300 Subject: [PATCH 1/2] chore(deps): upgrade `rust-bitcoin` to `0.32.0` and electrsd to `0.28.0` --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a29f479..545015d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ path = "src/lib.rs" [dependencies] serde = { version = "1.0", features = ["derive"] } -bitcoin = { version = "0.31.0", features = ["serde", "std"], default-features = false } +bitcoin = { version = "0.32", features = ["serde", "std"], default-features = false } hex = { package = "hex-conservative", version = "0.2" } log = "^0.4" minreq = { version = "2.11.0", features = ["json-using-serde"], optional = true } @@ -27,7 +27,7 @@ reqwest = { version = "0.11", optional = true, default-features = false, feature [dev-dependencies] serde_json = "1.0" tokio = { version = "1.20.1", features = ["full"] } -electrsd = { version = "0.27.0", features = ["legacy", "esplora_a33e97e1", "bitcoind_25_0"] } +electrsd = { version = "0.28.0", features = ["legacy", "esplora_a33e97e1", "bitcoind_25_0"] } lazy_static = "1.4.0" [features] From 6836628f8d0da3b39256d15f6dc7d113d6bdb49e Mon Sep 17 00:00:00 2001 From: Leonardo Lima Date: Wed, 22 May 2024 19:48:54 -0300 Subject: [PATCH 2/2] deps: bump crate version to 0.8.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 545015d..491b088 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "esplora-client" -version = "0.7.0" +version = "0.8.0" edition = "2018" authors = ["Alekos Filini "] license = "MIT"