Skip to content

Commit

Permalink
A0-3951: Bump the all-rust-deps group across 1 directory with 3 updat…
Browse files Browse the repository at this point in the history
…es (#449)

* A0-3951: Bump the all-rust-deps group across 1 directory with 3 updates

Bumps the all-rust-deps group with 3 updates in the / directory: [anyhow](https://github.com/dtolnay/anyhow), [itertools](https://github.com/rust-itertools/itertools) and [thiserror](https://github.com/dtolnay/thiserror).


Updates `anyhow` from 1.0.83 to 1.0.86
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.83...1.0.86)

Updates `itertools` from 0.12.1 to 0.13.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.12.1...v0.13.0)

Updates `thiserror` from 1.0.60 to 1.0.61
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.60...1.0.61)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-rust-deps
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-rust-deps
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-rust-deps
...

Signed-off-by: dependabot[bot] <support@github.com>

* group_by -> chunk_by

* bump version

* debump version

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Damian Leśniak <damian.lesniak@cardinals.cc>
dependabot[bot] and Damian Leśniak authored May 21, 2024
1 parent 0567907 commit 6cccc20
Showing 3 changed files with 142 additions and 129 deletions.
265 changes: 139 additions & 126 deletions Cargo.lock
4 changes: 2 additions & 2 deletions consensus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aleph-bft"
version = "0.37.0"
version = "0.37.1"
edition = "2021"
authors = ["Cardinal Cryptography"]
categories = ["algorithms", "data-structures", "cryptography", "database"]
@@ -21,7 +21,7 @@ codec = { package = "parity-scale-codec", version = "3.0", default-features = fa
derivative = "2.2.0"
futures = "0.3"
futures-timer = "3.0"
itertools = "0.12"
itertools = "0.13"
log = "0.4"
parking_lot = "0.12"
rand = "0.8"
2 changes: 1 addition & 1 deletion consensus/src/runway/mod.rs
Original file line number Diff line number Diff line change
@@ -148,7 +148,7 @@ impl<'a, H: Hasher> RunwayStatus<'a, H> {
fn format_missing_coords(c: &[(usize, Round)]) -> String {
c.iter()
.sorted()
.group_by(|(creator, _)| *creator)
.chunk_by(|(creator, _)| *creator)
.into_iter()
.map(|(creator, rounds)| {
// compress consecutive rounds into one interval to shorten logs

0 comments on commit 6cccc20

Please sign in to comment.