diff --git a/Cargo.lock b/Cargo.lock index 29da4ac8e..ebf53bb01 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -114,20 +114,62 @@ dependencies = [ [[package]] name = "aleph-bft" -version = "0.8.4" +version = "0.20.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "538d26ed9842009b131db7afed8166c54666b869f7b3b0bd16070957f04ead39" +checksum = "a3e70117d5481f1194ceafcf71d027377717d6fc738fc10a1433f412bb5bdc4d" dependencies = [ + "aleph-bft-rmc", + "aleph-bft-types", + "anyhow", "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.2.1", + "parking_lot 0.12.1", "rand 0.8.5", + "thiserror", +] + +[[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.2.1", +] + +[[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.2.1", +] + +[[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.2.1", ] [[package]] diff --git a/src/blockchain/Cargo.toml b/src/blockchain/Cargo.toml index c9ce74b84..f0ebb0161 100644 --- a/src/blockchain/Cargo.toml +++ b/src/blockchain/Cargo.toml @@ -4,7 +4,7 @@ version = "0.2.4" edition = "2021" [dependencies] -aleph-bft = "0.8.4" +aleph-bft = "0.20.5" anyhow = "1.0.69" async-trait = "0.1.64" bincode = "1.3.3"