From f8d2df4e034e9c6d8b4f51ba8800b22cc0595f2c Mon Sep 17 00:00:00 2001 From: Sovenok-Hacker Date: Sun, 28 Apr 2024 09:03:43 +0300 Subject: [PATCH] Bump deps. fix tests --- Cargo.toml | 6 +++--- tests/chain_test.rs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8230465..28fd020 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,14 +17,14 @@ log = "0.4.21" num-bigint = "0.4.4" num-traits = "0.2.18" rsa = "0.9.6" -secp256k1 = { version = "0.28.2", features = ["rand-std"] } +secp256k1 = { version = "0.29.0", features = ["rand-std"] } sha2 = "0.10.8" sled = "0.34.7" -thiserror = "1.0.58" +thiserror = "1.0.59" tokio = { version = "1.37.0", features = ["full"] } zstd = "0.13.1" primitive-types = "0.12.2" -async-trait = "0.1.79" +async-trait = "0.1.80" [dev-dependencies] rand = "0.8.5" diff --git a/tests/chain_test.rs b/tests/chain_test.rs index e684fba..3a0350f 100644 --- a/tests/chain_test.rs +++ b/tests/chain_test.rs @@ -1,6 +1,6 @@ use blockchaintree::{ block, - chain::{self, Chain}, + chain, tools, transaction::{self, Transactionable}, };