From 4fb5f66462276e34233d796499606f40b561c898 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Dec 2022 21:11:18 +0000 Subject: [PATCH] Bump aleph-bft from 0.8.4 to 0.20.4 Bumps [aleph-bft](https://github.com/Cardinal-Cryptography/AlephBFT) from 0.8.4 to 0.20.4. - [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 | 52 ++++++++++++++++++++++++++++++++++----- src/blockchain/Cargo.toml | 2 +- 2 files changed, 47 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9b7bdf614..7048d5a5e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -114,22 +114,62 @@ dependencies = [ [[package]] name = "aleph-bft" -version = "0.8.4" +version = "0.20.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "538d26ed9842009b131db7afed8166c54666b869f7b3b0bd16070957f04ead39" +checksum = "6b728a1cd327f84c61a3c0cf087f952703237fb6db8bde33284d67827e86e58f" dependencies = [ + "aleph-bft-rmc", + "aleph-bft-types", "async-trait", - "bit-vec", "derivative", - "derive_more", "futures", "futures-timer", + "itertools", "log", - "parity-scale-codec 2.3.1", - "parking_lot 0.11.2", + "parity-scale-codec 3.1.5", + "parking_lot 0.12.1", "rand 0.8.5", ] +[[package]] +name = "aleph-bft-crypto" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39ef65bb0b342d411e32789cdf722cbf163667e1656577ef356221c5aebf75c9" +dependencies = [ + "async-trait", + "bit-vec", + "derive_more", + "log", + "parity-scale-codec 3.1.5", +] + +[[package]] +name = "aleph-bft-rmc" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1a34546c3d75df640c0224294be256fd0c17ed3f7191367124ece4d93753061" +dependencies = [ + "aleph-bft-crypto", + "async-trait", + "futures", + "futures-timer", + "log", + "parity-scale-codec 3.1.5", +] + +[[package]] +name = "aleph-bft-types" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b39893b3cb3670ade7d8fe3cb807f9b032cd2a2937df88a64b53ad927fc1510" +dependencies = [ + "aleph-bft-crypto", + "async-trait", + "futures", + "parity-scale-codec 3.1.5", +] + [[package]] name = "anyhow" version = "1.0.66" diff --git a/src/blockchain/Cargo.toml b/src/blockchain/Cargo.toml index da980c8f8..ec77e4755 100644 --- a/src/blockchain/Cargo.toml +++ b/src/blockchain/Cargo.toml @@ -4,7 +4,7 @@ version = "0.2.1" edition = "2021" [dependencies] -aleph-bft = "0.8.4" +aleph-bft = "0.20.4" anyhow = "1.0.66" async-trait = "0.1.57" bincode = "1.3.3"