Skip to content

Commit

Permalink
refactor: loosen version requirement of ruint and re-export revm (#4
Browse files Browse the repository at this point in the history
)
  • Loading branch information
han0110 authored Oct 9, 2023
1 parent 124f3c6 commit 6713d8d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2", tag = "v2023_04_20" }
askama = { version = "0.12.0", features = ["config"], default-features = false }
hex = "0.4.3"
ruint = "1.10.1"
ruint = "1"
sha3 = "0.10"
itertools = "0.11.0"

Expand Down
1 change: 1 addition & 0 deletions src/evm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ pub fn encode_calldata(

#[cfg(any(test, feature = "evm"))]
pub(crate) mod test {
pub use revm;
use revm::{
primitives::{Address, CreateScheme, ExecutionResult, Output, TransactTo, TxEnv},
InMemoryDB, EVM,
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ pub use evm::{encode_calldata, FN_SIG_VERIFY_PROOF, FN_SIG_VERIFY_PROOF_WITH_VK_
pub use transcript::Keccak256Transcript;

#[cfg(feature = "evm")]
pub use evm::test::{compile_solidity, Evm};
pub use evm::test::{compile_solidity, revm, Evm};

0 comments on commit 6713d8d

Please sign in to comment.