From 47fbf91af1b9bd65e9dda4019e1bb9a6d77b436a Mon Sep 17 00:00:00 2001 From: Leo Alt Date: Sun, 18 Feb 2024 11:31:43 +0100 Subject: [PATCH] update evm test --- riscv/tests/riscv_data/evm/Cargo.toml | 3 --- riscv/tests/riscv_data/evm/src/lib.rs | 3 +-- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/riscv/tests/riscv_data/evm/Cargo.toml b/riscv/tests/riscv_data/evm/Cargo.toml index 3ca78f963c..c75c1d5c32 100644 --- a/riscv/tests/riscv_data/evm/Cargo.toml +++ b/riscv/tests/riscv_data/evm/Cargo.toml @@ -9,7 +9,4 @@ powdr-riscv-runtime = { path = "../../../../riscv-runtime" } serde = { version = "1.0", default-features = false, features = ["alloc", "derive", "rc"] } serde_cbor = { version = "0.11.2", default-features = false, features = ["alloc"] } -# TODO: remove when we update the cargo riscv nightly -ahash = { version = "=0.8.6", default-features = false } - [workspace] diff --git a/riscv/tests/riscv_data/evm/src/lib.rs b/riscv/tests/riscv_data/evm/src/lib.rs index fbfb699167..8340640b25 100644 --- a/riscv/tests/riscv_data/evm/src/lib.rs +++ b/riscv/tests/riscv_data/evm/src/lib.rs @@ -1,5 +1,6 @@ #![no_std] +use powdr_riscv_runtime::{coprocessors::get_data_serde, print}; use revm::{ db::{CacheDB, EmptyDB}, primitives::{ @@ -7,10 +8,8 @@ use revm::{ }, EVM, }; -use powdr_riscv_runtime::{print, coprocessors::get_data_serde}; extern crate alloc; -use alloc::vec; use alloc::vec::Vec; #[no_mangle]