From 806612fe3c02a0c39a1273e78eb773f964e17f41 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 16:35:38 +0000 Subject: [PATCH] Update ark-std requirement from ^0.4.0 to ^0.5.0 Updates the requirements on [ark-std](https://github.com/arkworks-rs/std) to permit the latest version. - [Changelog](https://github.com/arkworks-rs/std/blob/master/CHANGELOG.md) - [Commits](https://github.com/arkworks-rs/std/compare/v0.4.0...v0.5.0) --- updated-dependencies: - dependency-name: ark-std dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- arithmetic/Cargo.toml | 2 +- hyperplonk/Cargo.toml | 2 +- subroutines/Cargo.toml | 2 +- transcript/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arithmetic/Cargo.toml b/arithmetic/Cargo.toml index 99192dc0..23049e37 100644 --- a/arithmetic/Cargo.toml +++ b/arithmetic/Cargo.toml @@ -9,7 +9,7 @@ ark-bls12-381 = { version = "0.4.0", default-features = false, features = [ "cur ark-ff = { version = "^0.4.0", default-features = false } ark-poly = { version = "^0.4.0", default-features = false } ark-serialize = { version = "^0.4.0", default-features = false } -ark-std = { version = "^0.4.0", default-features = false } +ark-std = { version = "^0.5.0", default-features = false } displaydoc = { version = "0.2.3", default-features = false } rand_chacha = { version = "0.3.0", default-features = false } rayon = { version = "1.5.2", default-features = false, optional = true } diff --git a/hyperplonk/Cargo.toml b/hyperplonk/Cargo.toml index 90a8cda0..738fa166 100644 --- a/hyperplonk/Cargo.toml +++ b/hyperplonk/Cargo.toml @@ -10,7 +10,7 @@ ark-ec = { version = "^0.4.0", default-features = false } ark-ff = { version = "^0.4.0", default-features = false } ark-poly = { version = "^0.4.0", default-features = false } ark-serialize = { version = "^0.4.0", default-features = false, features = [ "derive" ] } -ark-std = { version = "^0.4.0", default-features = false } +ark-std = { version = "^0.5.0", default-features = false } displaydoc = { version = "0.2.3", default-features = false } rayon = { version = "1.5.2", default-features = false, optional = true } subroutines = { path = "../subroutines" } diff --git a/subroutines/Cargo.toml b/subroutines/Cargo.toml index 78d9260f..125ce4b7 100644 --- a/subroutines/Cargo.toml +++ b/subroutines/Cargo.toml @@ -11,7 +11,7 @@ ark-ec = { version = "^0.4.0", default-features = false } ark-ff = { version = "^0.4.0", default-features = false } ark-poly = { version = "^0.4.0", default-features = false } ark-serialize = { version = "^0.4.0", default-features = false } -ark-std = { version = "^0.4.0", default-features = false } +ark-std = { version = "^0.5.0", default-features = false } derivative = { version = "2", features = ["use_core"] } displaydoc = { version = "0.2.3", default-features = false } itertools = { version = "0.13.0", optional = true } diff --git a/transcript/Cargo.toml b/transcript/Cargo.toml index eac798d4..ee2d6d3d 100644 --- a/transcript/Cargo.toml +++ b/transcript/Cargo.toml @@ -8,6 +8,6 @@ edition = "2021" ark-ff = { version = "^0.4.0", default-features = false } ark-serialize = { version = "^0.4.0", default-features = false } -ark-std = { version = "^0.4.0", default-features = false } +ark-std = { version = "^0.5.0", default-features = false } displaydoc = { version = "0.2.3", default-features = false } merlin = { version = "3.0.0", default-features = false }