-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bumped all crates in prep for release * Updated `CHANGELOG.md`
- Loading branch information
Showing
5 changed files
with
11 additions
and
9 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
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,7 +1,7 @@ | ||
[package] | ||
name = "evm_arithmetization" | ||
description = "Implementation of STARKs for the Ethereum Virtual Machine" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
authors = ["Daniel Lubarov <[email protected]>", "William Borgeaud <[email protected]>"] | ||
readme = "README.md" | ||
categories = ["cryptography"] | ||
|
@@ -41,7 +41,7 @@ tiny-keccak = "2.0.2" | |
serde_json = { workspace = true } | ||
|
||
# Local dependencies | ||
mpt_trie = { version = "0.1.1", path = "../mpt_trie" } | ||
mpt_trie = { version = "0.2.0", path = "../mpt_trie" } | ||
|
||
[target.'cfg(not(target_env = "msvc"))'.dependencies] | ||
jemallocator = "0.5.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,7 +1,7 @@ | ||
[package] | ||
name = "mpt_trie" | ||
description = "Types and utility functions for building/working with partial Ethereum tries." | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
authors = ["Polygon Zero <[email protected]>"] | ||
readme = "README.md" | ||
edition.workspace = true | ||
|
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,7 +1,7 @@ | ||
[package] | ||
name = "proof_gen" | ||
description = "Generates block proofs from zero proof IR." | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
authors = ["Polygon Zero <[email protected]>"] | ||
edition.workspace = true | ||
license.workspace = true | ||
|
@@ -17,5 +17,5 @@ plonky2 = { workspace = true } | |
serde = { workspace = true } | ||
|
||
# Local dependencies | ||
trace_decoder = { version = "0.1.1", path = "../trace_decoder" } | ||
evm_arithmetization = { version = "0.1.1", path = "../evm_arithmetization" } | ||
trace_decoder = { version = "0.2.0", path = "../trace_decoder" } | ||
evm_arithmetization = { version = "0.1.2", path = "../evm_arithmetization" } |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "trace_decoder" | ||
description = "Processes trace payloads into Intermediate Representation (IR) format." | ||
authors = ["Polygon Zero <[email protected]>"] | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
@@ -27,8 +27,8 @@ serde_with = "3.4.0" | |
thiserror = { workspace = true } | ||
|
||
# Local dependencies | ||
mpt_trie = { version = "0.1.1", path = "../mpt_trie" } | ||
evm_arithmetization = { version = "0.1.1", path = "../evm_arithmetization" } | ||
mpt_trie = { version = "0.2.0", path = "../mpt_trie" } | ||
evm_arithmetization = { version = "0.1.2", path = "../evm_arithmetization" } | ||
|
||
[dev-dependencies] | ||
pretty_env_logger = "0.5.0" |