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

crates.io release v0.150.2-rc3 #176

Merged
merged 1 commit into from
Aug 6, 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
@@ -1,6 +1,6 @@
[package]
name = "zkevm_test_harness"
version = "0.150.2-rc.2"
version = "0.150.2-rc.3"
edition = "2021"
authors = ["Alex Vlasov <[email protected]>", "Konstantin Panarin <[email protected]>"]
homepage = "https://zksync.io/"
Expand All @@ -25,9 +25,9 @@ name = "geometry_config_generator"
path = "src/geometry_config_generator/main.rs"

[dependencies]
circuit_definitions = { version = "=0.150.2-rc.2", path = "./circuit_definitions"}
circuit_sequencer_api = { version = "=0.150.2-rc.2", path = "./circuit_sequencer_api"}
kzg = { package = "zksync_kzg", version = "=0.150.2-rc.2", path = "./kzg"}
circuit_definitions = { version = "=0.150.2-rc.3", path = "./circuit_definitions"}
circuit_sequencer_api = { version = "=0.150.2-rc.3", path = "./circuit_sequencer_api"}
kzg = { package = "zksync_kzg", version = "=0.150.2-rc.3", path = "./kzg"}

zkevm-assembly = "=0.150.0"

Expand All @@ -45,7 +45,7 @@ env_logger = "0.9"
smallvec = "1.13"
structopt = "0.3.26"
codegen = "0.2.0"
regex = { version = "1.10.4", features = ["pattern"] }
regex = { version = "1.10.6", features = ["pattern"] }

[dev-dependencies]
rand = "0.4"
Expand Down
6 changes: 3 additions & 3 deletions circuit_definitions/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "circuit_definitions"
version = "0.150.2-rc.2"
version = "0.150.2-rc.3"
edition = "2021"
authors = ["The Matter Labs Team <[email protected]>"]
homepage = "https://zksync.io/"
Expand All @@ -13,10 +13,10 @@ description = "ZKsync Era circuits definitions"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
snark_wrapper = "=0.1.1"
snark_wrapper = "=0.1.2"
# snark_wrapper = {path = "../../snark_wrapper"}

circuit_encodings = { version = "0.150.2-rc.2", path = "../circuit_encodings" }
circuit_encodings = { version = "0.150.2-rc.3", path = "../circuit_encodings" }

derivative = "2.2"
serde = {version = "1", features = ["derive"]}
Expand Down
2 changes: 1 addition & 1 deletion circuit_definitions/rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "nightly-2024-02-01"
channel = "nightly-2024-08-01"
4 changes: 2 additions & 2 deletions circuit_encodings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "circuit_encodings"
version = "0.150.2-rc.2"
version = "0.150.2-rc.3"
edition = "2021"
authors = ["The Matter Labs Team <[email protected]>"]
homepage = "https://zksync.io/"
Expand All @@ -13,7 +13,7 @@ description = "ZKsync Era circuits encodings"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
zkevm_circuits = "=0.150.1"
zkevm_circuits = "=0.150.2"
zk_evm = "=0.150.0"

derivative = "2.2"
Expand Down
4 changes: 2 additions & 2 deletions circuit_sequencer_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "circuit_sequencer_api"
version = "0.150.2-rc.2"
version = "0.150.2-rc.3"
edition = "2021"
authors = ["The Matter Labs Team <[email protected]>"]
homepage = "https://zksync.io/"
Expand All @@ -14,7 +14,7 @@ description = "ZKsync Era circuit API for sequencer"

[dependencies]

circuit_encodings = { version = "=0.150.2-rc.2", path = "../circuit_encodings"}
circuit_encodings = { version = "=0.150.2-rc.3", path = "../circuit_encodings"}
bellman = { package = "bellman_ce", version = "=0.7.0" }


Expand Down
6 changes: 3 additions & 3 deletions kzg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zksync_kzg"
version = "0.150.2-rc.2"
version = "0.150.2-rc.3"
edition = "2021"
authors = ["The Matter Labs Team <[email protected]>"]
homepage = "https://zksync.io/"
Expand All @@ -22,8 +22,8 @@ hex = "0.4"
once_cell = "1"
serde_with = {version = "1", features = ["hex"]}

boojum = "=0.2.1"
zkevm_circuits = "=0.150.1"
boojum = "=0.2.2"
zkevm_circuits = "=0.150.2"

[dev-dependencies]
rand = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
# channel = "nightly"
channel = "nightly-2024-02-01"
channel = "nightly-2024-08-01"
2 changes: 1 addition & 1 deletion src/witness/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ pub fn transform_queue_witness<
const N: usize,
D: CircuitEncodable<F, N>,
>(
witness_iter: impl Iterator<Item = &'a ([F; N], [F; QUEUE_STATE_WIDTH], I)>,
witness_iter: impl Iterator<Item = &'a ([F; N], [F; QUEUE_STATE_WIDTH], I)> +'a,
) -> CircuitQueueWitness<F, D, QUEUE_STATE_WIDTH, N> {
let wit: VecDeque<_> = witness_iter
.map(|(_enc, old_tail, el)| (el.reflect(), *old_tail))
Expand Down
Loading