From 657a53bb2f329543dd4fdc919081be7493477ec8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 16:02:31 +0000 Subject: [PATCH] chore(deps): update hashbrown requirement from 0.13.2 to 0.14.1 Updates the requirements on [hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest version. - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.13.2...v0.14.1) --- updated-dependencies: - dependency-name: hashbrown dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- plonk/Cargo.toml | 2 +- primitives/Cargo.toml | 4 ++-- relation/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plonk/Cargo.toml b/plonk/Cargo.toml index a6f6aaba0..31f4e9562 100644 --- a/plonk/Cargo.toml +++ b/plonk/Cargo.toml @@ -20,7 +20,7 @@ displaydoc = { version = "0.2.3", default-features = false } downcast-rs = { version = "1.2.0", default-features = false } dyn-clone = "^1.0" espresso-systems-common = { git = "https://github.com/espressosystems/espresso-systems-common", tag = "0.4.0" } -hashbrown = "0.13.2" +hashbrown = "0.14.1" itertools = { workspace = true } jf-primitives = { path = "../primitives", default-features = false } jf-relation = { path = "../relation", default-features = false } diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 6fd804592..a3e03a770 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -35,7 +35,7 @@ derivative = { version = "2", features = ["use_core"] } digest = { version = "0.10.1", default-features = false, features = ["alloc"] } displaydoc = { version = "0.2.3", default-features = false } espresso-systems-common = { git = "https://github.com/espressosystems/espresso-systems-common", tag = "0.4.0" } -hashbrown = "0.13.1" +hashbrown = "0.14.1" itertools = { workspace = true, features = ["use_alloc"] } jf-relation = { path = "../relation", default-features = false } jf-utils = { path = "../utilities" } @@ -63,7 +63,7 @@ ark-ed-on-bls12-381-bandersnatch = "0.4.0" ark-ed-on-bn254 = "0.4.0" bincode = "1.3" criterion = "0.5.1" -hashbrown = "0.13.1" +hashbrown = "0.14.1" sha2 = { version = "0.10.1" } [[bench]] diff --git a/relation/Cargo.toml b/relation/Cargo.toml index b9a2c8df2..6e23ed502 100644 --- a/relation/Cargo.toml +++ b/relation/Cargo.toml @@ -21,7 +21,7 @@ derivative = { version = "2", features = ["use_core"] } displaydoc = { version = "0.2.3", default-features = false } downcast-rs = { version = "1.2.0", default-features = false } dyn-clone = "^1.0" -hashbrown = "0.13.2" +hashbrown = "0.14.1" itertools = { version = "0.10.1", default-features = false } jf-utils = { path = "../utilities" } num-bigint = { version = "0.4", default-features = false }