From b523f7455b8ec67414e32a63382c198fc01c56dc Mon Sep 17 00:00:00 2001 From: Igor Aleksanov Date: Fri, 5 Jul 2024 09:29:10 +0400 Subject: [PATCH] Prepare 0.7.0 release --- Cargo.toml | 10 +++++----- src/plonk/blake2_const/blake2s/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b6255914c..2e5603fae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ homepage = "https://github.com/matter-labs/bellman" license = "MIT/Apache-2.0" name = "bellman_ce" repository = "https://github.com/matter-labs/bellman" -version = "0.3.2" +version = "0.7.0" edition = "2018" [lib] @@ -22,7 +22,7 @@ byteorder = "1" num_cpus = "1" serde = {version = "1", features = ["derive", "rc"]} -pairing = {package = "pairing_ce", version = "0.28.*" } +pairing = {package = "pairing_ce", version = "=0.28.6" } # pairing = {package = "pairing_ce", path = "../pairing"} futures = {package = "futures", version = "0.3", default_features = false, features = ["executor"]} @@ -33,8 +33,8 @@ tiny-keccak = {version = "1.5", optional = true} blake2-rfc = {version = "0.2.18", optional = true} blake2s_simd = {version = "0.5"} lazy_static = {version = "1", optional = true} -blake2s_const = {version = "0.6", optional = true, path = "./src/plonk/blake2_const/blake2s/"} -hex = "*" +blake2s_const = {version = "=0.7", optional = true, path = "./src/plonk/blake2_const/blake2s/"} +hex = "0.4.3" [features] default = ["multicore", "plonk"] @@ -53,4 +53,4 @@ allocator = [] debug = true [profile.bench] -debug = true \ No newline at end of file +debug = true diff --git a/src/plonk/blake2_const/blake2s/Cargo.toml b/src/plonk/blake2_const/blake2s/Cargo.toml index c566b79b7..34a9f42a7 100644 --- a/src/plonk/blake2_const/blake2s/Cargo.toml +++ b/src/plonk/blake2_const/blake2s/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blake2s_const" -version = "0.6.0" +version = "0.7.0" authors = ["Jack O'Connor"] description = "a pure Rust BLAKE2s implementation with dynamic SIMD" license = "MIT"