forked from rust-ethereum/evm
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: add usize casting strict check (#49)
* Refactore usize casting * Added error: UsizeOverflow * pop_u256! - tiny refactoring * Fix fn func call - in_offset usize casting * Optimize array reallocation for: fn return_value
- Loading branch information
Showing
7 changed files
with
75 additions
and
101 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 |
---|---|---|
|
@@ -9,10 +9,10 @@ keywords.workspace = true | |
edition.workspace = true | ||
|
||
[workspace.dependencies] | ||
evm = { version = "0.43", path = "." } | ||
evm-core = { version = "0.43", path = "core", default-features = false } | ||
evm-gasometer = { version = "0.43", path = "gasometer", default-features = false } | ||
evm-runtime = { version = "0.43", path = "runtime", default-features = false } | ||
evm = { version = "0.44", path = "." } | ||
evm-core = { version = "0.44", path = "core", default-features = false } | ||
evm-gasometer = { version = "0.44", path = "gasometer", default-features = false } | ||
evm-runtime = { version = "0.44", path = "runtime", default-features = false } | ||
primitive-types = { version = "0.12", default-features = false } | ||
auto_impl = "1.0" | ||
sha3 = { version = "0.10", default-features = false } | ||
|
@@ -87,7 +87,7 @@ create-fixed = [] | |
print-debug = ["evm-gasometer/print-debug"] | ||
|
||
[workspace.package] | ||
version = "0.43.0" | ||
version = "0.44.0" | ||
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
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