-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* large scale refactor * chore: error consolidation * chore: remove unused imports * chore: remove errors * updating to revm 4.0.0 * error refactor * fix tests and clean up imports * saving progress * cleanup * cleanup * Update lib.rs --------- Co-authored-by: Waylon Jepsen <[email protected]> Co-authored-by: Waylon Jepsen <[email protected]>
- Loading branch information
1 parent
cbc87f5
commit c82d56e
Showing
41 changed files
with
1,110 additions
and
1,567 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "arbiter-core" | ||
version = "0.9.1" | ||
edition = "2021" | ||
authors = ["Waylon Jepsen <[email protected]>", "Colin Roberts <[email protected]>"] | ||
authors = [ | ||
"Waylon Jepsen <[email protected]>", | ||
"Colin Roberts <[email protected]>", | ||
] | ||
description = "Allowing smart contract developers to do simulation driven development via an EVM emulator" | ||
license = "Apache-2.0" | ||
keywords = ["ethereum", "evm", "emulator", "testing", "smart-contracts"] | ||
|
@@ -13,6 +16,7 @@ readme = "../README.md" | |
arbiter-bindings = { path = "../arbiter-bindings" } | ||
|
||
# Ethereum and EVM | ||
uint = "0.9.5" | ||
ethers.workspace = true | ||
revm.workspace = true | ||
revm-primitives.workspace = true | ||
|
@@ -34,7 +38,7 @@ futures-locks = { version = "=0.7.1" } | |
|
||
|
||
# Randomness | ||
rand = { version = "=0.8.5" } | ||
rand = { version = "=0.8.5" } | ||
rand_distr = { version = "=0.4.3" } | ||
statrs = { version = "=0.16.0" } | ||
|
||
|
@@ -50,17 +54,17 @@ polars = { version = "0.36.2", features = ["parquet", "csv", "json"] } | |
|
||
# Dependencies for the test build and development | ||
[dev-dependencies] | ||
anyhow = { version = "=1.0.79" } | ||
test-log = { version = "=0.2.14" } | ||
anyhow = { version = "=1.0.79" } | ||
test-log = { version = "=0.2.14" } | ||
tracing-test = "0.2.4" | ||
tracing-subscriber = "0.3.18" | ||
|
||
polars = "0.36.2" | ||
cargo_metadata = "0.18.1" | ||
chrono = "0.4.33" | ||
futures = { version = "=0.3.30" } | ||
futures = { version = "=0.3.30" } | ||
|
||
assert_matches = { version = "=1.5" } | ||
assert_matches = { version = "=1.5" } | ||
|
||
[[bench]] | ||
name = "bench" | ||
|
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
Oops, something went wrong.