From e04baa094318598c40d9a69f586716262255a45d Mon Sep 17 00:00:00 2001 From: Himanshu Goyal Date: Wed, 27 Mar 2024 17:24:05 -0400 Subject: [PATCH] update hotshot --- Cargo.toml | 5 ++--- src/test.rs | 10 ++++++---- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 49b0429..0151e09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ derive_more = "0.99" derivative = "2.2" either = { version = "1.10", features = ["serde"] } futures = "0.3" -hotshot-types = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "0.5.27" } +hotshot-types = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "0.5.28" } serde = { version = "1.0", features = ["derive"] } snafu = "0.8" tagged-base64 = { git = "https://github.com/EspressoSystems/tagged-base64", tag = "0.3.4" } @@ -28,7 +28,6 @@ versioned-binary-serialization = { git = "https://github.com/EspressoSystems/ver tracing = "0.1" [dev-dependencies] -hotshot-example-types = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "0.5.27" } +hotshot-example-types = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "0.5.28" } portpicker = "0.1.1" surf-disco = { git = "https://github.com/EspressoSystems/surf-disco.git", tag = "v0.5.0" } -hotshot = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "0.5.27" } diff --git a/src/test.rs b/src/test.rs index 7dbeb94..8556c22 100644 --- a/src/test.rs +++ b/src/test.rs @@ -7,10 +7,12 @@ mod tests { use async_compatibility_layer::logging::{setup_backtrace, setup_logging}; use async_std::sync::RwLock; use futures::stream::StreamExt; - use hotshot_types::constants::{Version01, STATIC_VER_0_1}; - use hotshot_types::data::ViewNumber; - use hotshot_types::event::{Event, EventType}; - use hotshot_types::traits::node_implementation::{ConsensusTime, NodeType}; + use hotshot_types::{ + constants::{Version01, STATIC_VER_0_1}, + data::ViewNumber, + event::{Event, EventType}, + traits::node_implementation::{ConsensusTime, NodeType}, + }; use hotshot_example_types::node_types::TestTypes; use std::sync::Arc;