forked from rust-ethereum/evm
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Extended EIP-7702 codebase with new EIP changes * Update EIP-7702 tests * CI: Added pectra-devnet-4 fixtures for * Tests pectra-devnet-4 * Update fixtures_pectra-devnet-5 tests * Added test exceptions fail. Added jsont-tests debug feature * EXTCOPY, EXTHASH refactoring and tests * Changes gas for EXTCODECOPY, EXTCODEHASH * Auth nonce check - fix bounds for verification * Auth code check for Empty Address case * Auth list reconfigurations and more tests fixes * Fixed auth-list cache bug * Update to Rust 1.84 and fix clippy (#74) * Added test skip for: set_code_to_non_empty_storage * Fix clippy * Remove TODO for CREATE tests * Added test_ef01_hash
- Loading branch information
Showing
18 changed files
with
156 additions
and
112 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 |
---|---|---|
|
@@ -9,10 +9,10 @@ keywords.workspace = true | |
edition.workspace = true | ||
|
||
[workspace.dependencies] | ||
evm = { version = "0.46.2", path = "." } | ||
evm-core = { version = "0.46.2", path = "core", default-features = false } | ||
evm-gasometer = { version = "0.46.2", path = "gasometer", default-features = false } | ||
evm-runtime = { version = "0.46.2", path = "runtime", default-features = false } | ||
evm = { version = "0.46.3", path = "." } | ||
evm-core = { version = "0.46.3", path = "core", default-features = false } | ||
evm-gasometer = { version = "0.46.3", path = "gasometer", default-features = false } | ||
evm-runtime = { version = "0.46.3", path = "runtime", default-features = false } | ||
primitive-types = { version = "0.13", default-features = false } | ||
auto_impl = "1.0" | ||
sha3 = { version = "0.10", default-features = false } | ||
|
@@ -84,7 +84,7 @@ create-fixed = [] | |
print-debug = ["evm-gasometer/print-debug"] | ||
|
||
[workspace.package] | ||
version = "0.46.2" | ||
version = "0.46.3" | ||
license = "Apache-2.0" | ||
authors = ["Aurora Labs <[email protected]>", "Wei Tang <[email protected]>", "Parity Technologies <[email protected]>"] | ||
description = "Portable Ethereum Virtual Machine implementation written in pure Rust." | ||
|
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
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 |
---|---|---|
|
@@ -27,3 +27,4 @@ hex-literal = "0.4" | |
|
||
[features] | ||
enable-slow-tests = [] | ||
print-debug = ["evm/print-debug"] |
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
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
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
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,4 +1,4 @@ | ||
[toolchain] | ||
channel = "1.82.0" | ||
channel = "1.84.0" | ||
profile = "minimal" | ||
components = ["rustfmt", "clippy"] |
Oops, something went wrong.