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]