From 24a32f21004f1852fb9b0caf8f289d6114721a01 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Jul 2024 13:14:18 +0000 Subject: [PATCH] Update ark-ff requirement from 0.3 to 0.4 Updates the requirements on [ark-ff](https://github.com/arkworks-rs/algebra) to permit the latest version. - [Release notes](https://github.com/arkworks-rs/algebra/releases) - [Changelog](https://github.com/arkworks-rs/algebra/blob/master/CHANGELOG.md) - [Commits](https://github.com/arkworks-rs/algebra/compare/v0.3.0...v0.4.2) --- updated-dependencies: - dependency-name: ark-ff dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8a5c5b2..43f4d8a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ thiserror = "1" groth-sahai = { git = "https://github.com/jdwhite48/groth-sahai-rs", rev = "73b617e2e3d9a267d3f1d7fc37993372057e9dc8" } ark-bls12-381 = { version = "0.3" } ark-ec = { version = "0.3", default-features = false } -ark-ff = { version = "0.3", default-features = false } +ark-ff = { version = "0.4", default-features = false } ark-serialize = { version = "0.3", default-features = false } rand_chacha = { version = "0.3" }