From 2685dc2601545b0070bde3e592a4207e128bfe97 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Aug 2022 18:32:13 +0000 Subject: [PATCH] Bump aleph-bft from 0.13.0 to 0.19.3 Bumps [aleph-bft](https://github.com/Cardinal-Cryptography/AlephBFT) from 0.13.0 to 0.19.3. - [Release notes](https://github.com/Cardinal-Cryptography/AlephBFT/releases) - [Commits](https://github.com/Cardinal-Cryptography/AlephBFT/commits) --- updated-dependencies: - dependency-name: aleph-bft dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 44 ++++++++++++++++++++++++++++++++------- finality-aleph/Cargo.toml | 2 +- 2 files changed, 37 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b06ae9eb0d..5bfc81d917 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -84,16 +84,17 @@ dependencies = [ [[package]] name = "aleph-bft" -version = "0.13.0" +version = "0.19.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05c73a3ae2090e9a52da0b8943c44c98a595b434dbc626292e2d0885d14b0d50" +checksum = "9cc671f15e05082b6ae350d40d83964fa92e26ead5d1b739f83ce130bd733e2d" dependencies = [ - "aleph-bft-rmc", + "aleph-bft-rmc 0.5.1", "aleph-bft-types", "async-trait", "derivative", "futures 0.3.21", "futures-timer", + "itertools", "log", "parity-scale-codec", "parking_lot 0.12.0", @@ -113,13 +114,40 @@ dependencies = [ "parity-scale-codec", ] +[[package]] +name = "aleph-bft-crypto" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "728a91479669f5eb086b38bff29156eb2f2ffc8e5eab16f6afe48e43b5180599" +dependencies = [ + "async-trait", + "bit-vec", + "derive_more", + "log", + "parity-scale-codec", +] + [[package]] name = "aleph-bft-rmc" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "65a4b8bed5caa463c6eb3ca760676d7367988a802b1ea4f8383b3d668aac3f2c" dependencies = [ - "aleph-bft-crypto", + "aleph-bft-crypto 0.3.0", + "async-trait", + "futures 0.3.21", + "futures-timer", + "log", + "parity-scale-codec", +] + +[[package]] +name = "aleph-bft-rmc" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1190a7b2af2c25bd0f318a9a45c05603e5f93cd170be7da15a10c33f2c8153bc" +dependencies = [ + "aleph-bft-crypto 0.5.1", "async-trait", "futures 0.3.21", "futures-timer", @@ -129,11 +157,11 @@ dependencies = [ [[package]] name = "aleph-bft-types" -version = "0.3.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b201a6923a748250a58f9c0164027715d5a8821b770eb902feedb4538a81bb7" +checksum = "e0a3c09067263b53e3396cad81ceb7841e0fc5ac10217127410dbf8199a4d3da" dependencies = [ - "aleph-bft-crypto", + "aleph-bft-crypto 0.5.1", "async-trait", "futures 0.3.21", "parity-scale-codec", @@ -1620,7 +1648,7 @@ name = "finality-aleph" version = "0.3.0" dependencies = [ "aleph-bft", - "aleph-bft-rmc", + "aleph-bft-rmc 0.3.0", "async-trait", "derive_more", "env_logger", diff --git a/finality-aleph/Cargo.toml b/finality-aleph/Cargo.toml index 810a1ea8e9..bac3ff1ed0 100644 --- a/finality-aleph/Cargo.toml +++ b/finality-aleph/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Cardinal Cryptography"] edition = "2021" [dependencies] -aleph-bft = "0.13.0" +aleph-bft = "0.19.3" aleph-bft-rmc = "0.3.0" aleph-primitives = { package = "primitives", path = "../primitives" }