From 668c24feb0d447ebf922ee1f089cf2e7cec1aa6f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Jan 2023 13:02:49 +0000 Subject: [PATCH] Chore(deps): update ark-std requirement from 0.3 to 0.4 Updates the requirements on [ark-std](https://github.com/arkworks-rs/std) to permit the latest version. - [Release notes](https://github.com/arkworks-rs/std/releases) - [Changelog](https://github.com/arkworks-rs/std/blob/v0.4.0/CHANGELOG.md) - [Commits](https://github.com/arkworks-rs/std/compare/v0.3.0...v0.4.0) --- updated-dependencies: - dependency-name: ark-std dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/curve/Cargo.toml | 2 +- tests/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/curve/Cargo.toml b/crates/curve/Cargo.toml index bf4a08f..eeeff0c 100644 --- a/crates/curve/Cargo.toml +++ b/crates/curve/Cargo.toml @@ -14,7 +14,7 @@ parity-scale-codec = { version = "2.1", default-features = false, features = ["d ## Arkworks # https://github.com/arkworks-rs/utils -ark-std = { version = "0.3", default-features = false } +ark-std = { version = "0.4", default-features = false } # https://github.com/arkworks-rs/curves ark-bls12-377 = { version = "0.3", default-features = false, features = ["curve"] } ark-bls12-381 = { version = "0.3", default-features = false, features = ["curve"] } diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 3657957..bf16035 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -14,7 +14,7 @@ rand = { version = "0.8", default-features = false } parity-scale-codec = { version = "2.1", default-features = false, features = [ "derive" ] } ## Arkworks -ark-std = { version = "0.3", default-features = false } +ark-std = { version = "0.4", default-features = false } ark-bls12-377 = { version = "0.3", default-features = false, features = ["curve"] } ark-bls12-381 = { version = "0.3", default-features = false, features = ["curve"] } ark-bn254 = { version = "0.3", default-features = false, features = ["curve"] }