From 3af613189a1e999396c3b5d73c899b7f06252db1 Mon Sep 17 00:00:00 2001 From: Antoni Spaanderman <56turtle56@gmail.com> Date: Wed, 10 Jul 2024 15:17:58 +0200 Subject: [PATCH] update dependencies + version 1.5.1 --- Cargo.toml | 4 ++-- integration_tests/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 66f4b99..9f91960 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoincore-zmq" -version = "1.5.0" +version = "1.5.1" edition = "2021" license = "MIT" description = "Bitcoin Core ZMQ subscriber with minimal dependencies" @@ -14,7 +14,7 @@ async = ["dep:async_zmq", "dep:futures-util"] [dependencies] async_zmq = { version = "0.4.0", optional = true } -bitcoin = "0.32.0" +bitcoin = "0.32.2" futures-util = { version = "0.3.30", optional = true } zmq = "0.10.0" zmq-sys = "0.12.0" diff --git a/integration_tests/Cargo.toml b/integration_tests/Cargo.toml index 72e855a..e55f026 100644 --- a/integration_tests/Cargo.toml +++ b/integration_tests/Cargo.toml @@ -4,8 +4,8 @@ version = "1.0.0" edition = "2021" [dependencies] -bitcoin = "0.32.0" +bitcoin = "0.32.2" bitcoincore-rpc = "0.19.0" bitcoincore-zmq = { path = "..", features = ["async"] } futures = "0.3.30" -tokio = { version = "1.37.0", features = ["full"] } +tokio = { version = "1.38.0", features = ["full"] }