From 5edc51ad300a5544c0b1f635a6ac1189897ac290 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2024 12:26:42 +0000 Subject: [PATCH] Update ark-serialize requirement from ^0.4.0 to ^0.5.0 Updates the requirements on [ark-serialize](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/v0.5.0/CHANGELOG.md) - [Commits](https://github.com/arkworks-rs/algebra/compare/v0.4.0...v0.5.0) --- updated-dependencies: - dependency-name: ark-serialize dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- arithmetic/Cargo.toml | 2 +- cirrus/Cargo.toml | 2 +- hyperplonk/Cargo.toml | 2 +- subroutines/Cargo.toml | 2 +- transcript/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arithmetic/Cargo.toml b/arithmetic/Cargo.toml index 99192dc..81850f6 100644 --- a/arithmetic/Cargo.toml +++ b/arithmetic/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" ark-bls12-381 = { version = "0.4.0", default-features = false, features = [ "curve" ] } 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-serialize = { version = "^0.5.0", default-features = false } ark-std = { version = "^0.4.0", default-features = false } displaydoc = { version = "0.2.3", default-features = false } rand_chacha = { version = "0.3.0", default-features = false } diff --git a/cirrus/Cargo.toml b/cirrus/Cargo.toml index 2e4b6da..55a42b1 100644 --- a/cirrus/Cargo.toml +++ b/cirrus/Cargo.toml @@ -9,7 +9,7 @@ arithmetic = { path = "../arithmetic" } 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-serialize = { version = "^0.5.0", default-features = false, features = [ "derive" ] } ark-std = { version = "^0.4.0", default-features = false } displaydoc = { version = "0.2.3", default-features = false } rayon = { version = "1.5.2", default-features = false, optional = true } diff --git a/hyperplonk/Cargo.toml b/hyperplonk/Cargo.toml index 83771be..66a5694 100644 --- a/hyperplonk/Cargo.toml +++ b/hyperplonk/Cargo.toml @@ -9,7 +9,7 @@ arithmetic = { path = "../arithmetic" } 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-serialize = { version = "^0.5.0", default-features = false, features = [ "derive" ] } ark-std = { version = "^0.4.0", default-features = false } displaydoc = { version = "0.2.3", default-features = false } rayon = { version = "1.5.2", default-features = false, optional = true } diff --git a/subroutines/Cargo.toml b/subroutines/Cargo.toml index 6663136..1304343 100644 --- a/subroutines/Cargo.toml +++ b/subroutines/Cargo.toml @@ -10,7 +10,7 @@ ark-bls12-381 = { version = "0.4.0", default-features = false, features = [ "cur 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-serialize = { version = "^0.5.0", default-features = false } ark-std = { version = "^0.4.0", default-features = false } derivative = { version = "2", features = ["use_core"] } displaydoc = { version = "0.2.3", default-features = false } diff --git a/transcript/Cargo.toml b/transcript/Cargo.toml index eac798d..7bbcf2e 100644 --- a/transcript/Cargo.toml +++ b/transcript/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] ark-ff = { version = "^0.4.0", default-features = false } -ark-serialize = { version = "^0.4.0", default-features = false } +ark-serialize = { version = "^0.5.0", default-features = false } ark-std = { version = "^0.4.0", default-features = false } displaydoc = { version = "0.2.3", default-features = false } merlin = { version = "3.0.0", default-features = false }