This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/v1.5.0' into vv-oracle-paralleli…
…zation2
- Loading branch information
Showing
10 changed files
with
239 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "zkevm_test_harness" | ||
version = "0.150.1" | ||
version = "0.150.2-rc.3" | ||
edition = "2021" | ||
authors = ["Alex Vlasov <[email protected]>", "Konstantin Panarin <[email protected]>"] | ||
homepage = "https://zksync.io/" | ||
|
@@ -25,9 +25,9 @@ name = "geometry_config_generator" | |
path = "src/geometry_config_generator/main.rs" | ||
|
||
[dependencies] | ||
circuit_definitions = { version = "=0.150.1", path = "./circuit_definitions"} | ||
circuit_sequencer_api = { version = "=0.150.1", path = "./circuit_sequencer_api"} | ||
kzg = { package = "zksync_kzg", version = "=0.150.1", 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" | ||
|
||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "circuit_definitions" | ||
version = "0.150.1" | ||
version = "0.150.2-rc.3" | ||
edition = "2021" | ||
authors = ["The Matter Labs Team <[email protected]>"] | ||
homepage = "https://zksync.io/" | ||
|
@@ -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.0" | ||
snark_wrapper = "=0.1.2" | ||
# snark_wrapper = {path = "../../snark_wrapper"} | ||
|
||
circuit_encodings = { version = "0.150.0", path = "../circuit_encodings" } | ||
circuit_encodings = { version = "0.150.2-rc.3", path = "../circuit_encodings" } | ||
|
||
derivative = "2.2" | ||
serde = {version = "1", features = ["derive"]} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "circuit_encodings" | ||
version = "0.150.1" | ||
version = "0.150.2-rc.3" | ||
edition = "2021" | ||
authors = ["The Matter Labs Team <[email protected]>"] | ||
homepage = "https://zksync.io/" | ||
|
@@ -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.0" | ||
zkevm_circuits = "=0.150.2" | ||
zk_evm = "=0.150.0" | ||
|
||
derivative = "2.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "circuit_sequencer_api" | ||
version = "0.150.1" | ||
version = "0.150.2-rc.3" | ||
edition = "2021" | ||
authors = ["The Matter Labs Team <[email protected]>"] | ||
homepage = "https://zksync.io/" | ||
|
@@ -14,7 +14,7 @@ description = "ZKsync Era circuit API for sequencer" | |
|
||
[dependencies] | ||
|
||
circuit_encodings = { version = "=0.150.1", path = "../circuit_encodings"} | ||
circuit_encodings = { version = "=0.150.2-rc.3", path = "../circuit_encodings"} | ||
bellman = { package = "bellman_ce", version = "=0.7.0" } | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "zksync_kzg" | ||
version = "0.150.1" | ||
version = "0.150.2-rc.3" | ||
edition = "2021" | ||
authors = ["The Matter Labs Team <[email protected]>"] | ||
homepage = "https://zksync.io/" | ||
|
@@ -22,8 +22,8 @@ hex = "0.4" | |
once_cell = "1" | ||
serde_with = {version = "1", features = ["hex"]} | ||
|
||
boojum = "=0.2.0" | ||
zkevm_circuits = "=0.150.0" | ||
boojum = "=0.2.2" | ||
zkevm_circuits = "=0.150.2" | ||
|
||
[dev-dependencies] | ||
rand = "0.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.