Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Prepare 0.7.0 release #58

Merged
merged 1 commit into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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"]}
Expand All @@ -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"]
Expand All @@ -53,4 +53,4 @@ allocator = []
debug = true

[profile.bench]
debug = true
debug = true
2 changes: 1 addition & 1 deletion src/plonk/blake2_const/blake2s/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
Loading