Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into restructure_p6
Browse files Browse the repository at this point in the history
  • Loading branch information
rakita committed Oct 2, 2024
2 parents 3069ccc + a47d3e5 commit d1a7883
Show file tree
Hide file tree
Showing 380 changed files with 53,253 additions and 22,213 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,5 @@ jobs:
- uses: actions/checkout@v4
- uses: crate-ci/typos@v1.22.7
with:
config: ./Typos.toml
config: ./typos.toml
isolated: true

54 changes: 42 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ members = [
"crates/wiring",
"crates/wiring/transaction",
"crates/specification",
"crates/statetest-types",

# variants
# "crates/optimism",
Expand Down Expand Up @@ -46,6 +47,7 @@ transaction = { path = "crates/wiring/transaction", package = "revm-transaction"
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "10.0.1", default-features = false }
inspector = { path = "crates/inspector", package = "revm-inspector", version = "1.0.0", default-features = false }
precompile = { path = "crates/precompile", package = "revm-precompile", version = "11.0.1", default-features = false }
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "1.0.0", default-features = false }

[workspace.package]
license = "MIT"
Expand Down
13 changes: 0 additions & 13 deletions Typos.toml

This file was deleted.

2 changes: 1 addition & 1 deletion bins/revme/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ repository.workspace = true
# revm
database.workspace = true
revm = { workspace = true, features = ["std", "hashbrown", "c-kzg", "blst"] }
statetest-types = { workspace = true }
inspector = { workspace = true, features = ["std", "serde-json"] }
# enable parse std and parse feature.
bytecode = { workspace = true, features = ["std", "parse"] }

hash-db = "0.15"
hex = "0.4"
hashbrown = "0.14"
indicatif = "0.17"
microbench = "0.5"
Expand Down
2 changes: 1 addition & 1 deletion bins/revme/src/cmd/bench/analysis.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use database::{BenchmarkDB, EthereumBenchmarkWiring};
use revm::{
bytecode::Bytecode,
primitives::{address, bytes, Bytes, TxKind},
primitives::{address, bytes, hex, Bytes, TxKind},
Evm,
};
use std::time::Instant;
Expand Down
4 changes: 2 additions & 2 deletions bins/revme/src/cmd/bytecode.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use clap::Parser;
use revm::{
bytecode::eof::{self, validate_eof_inner, CodeType, Eof, EofError},
primitives::Bytes,
specification::constantans::MAX_INITCODE_SIZE,
primitives::{hex, Bytes},
specification::constants::MAX_INITCODE_SIZE,
};
use std::io;

Expand Down
2 changes: 1 addition & 1 deletion bins/revme/src/cmd/evmrunner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use database::BenchmarkDB;
use inspector::{inspector_handle_register, inspectors::TracerEip3155};
use revm::{
bytecode::{Bytecode, BytecodeDecodeError},
primitives::{address, Address, TxKind},
primitives::{address, hex, Address, TxKind},
wiring::EthereumWiring,
Database, Evm,
};
Expand Down
1 change: 0 additions & 1 deletion bins/revme/src/cmd/statetest.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
pub mod merkle_trie;
pub mod models;
mod runner;
pub mod utils;

Expand Down
Loading

0 comments on commit d1a7883

Please sign in to comment.