From 28be885718da70666dab31c2155b1a9ac46778e2 Mon Sep 17 00:00:00 2001 From: Lukasz Gniecki Date: Fri, 6 Oct 2023 16:36:24 +0200 Subject: [PATCH] and update dependencies --- Cargo.lock | 2 +- rmc/Cargo.toml | 2 +- types/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7f49e74d..9252c486 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -63,7 +63,7 @@ dependencies = [ [[package]] name = "aleph-bft-crypto" -version = "0.7.1" +version = "0.8.0" dependencies = [ "async-trait", "bit-vec", diff --git a/rmc/Cargo.toml b/rmc/Cargo.toml index 25661f0b..84a97e6c 100644 --- a/rmc/Cargo.toml +++ b/rmc/Cargo.toml @@ -13,7 +13,7 @@ readme = "./README.md" description = "Reliable MultiCast - a primitive for Reliable Broadcast protocol." [dependencies] -aleph-bft-crypto = { path = "../crypto", version = "0.7" } +aleph-bft-crypto = { path = "../crypto", version = "0.8" } aleph-bft-types = { path = "../types", version = "0.10" } async-trait = "0.1" codec = { package = "parity-scale-codec", version = "3.0", default-features = false, features = ["derive"] } diff --git a/types/Cargo.toml b/types/Cargo.toml index 50de6c66..e2e1ce47 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -11,7 +11,7 @@ readme = "./README.md" description = "Traits that need to be implemented by the user of the aleph-bft package." [dependencies] -aleph-bft-crypto = { path = "../crypto", version = "0.7" } +aleph-bft-crypto = { path = "../crypto", version = "0.8" } async-trait = "0.1" codec = { package = "parity-scale-codec", version = "3.0", default-features = false, features = ["derive"] } futures = "0.3"