From b9cd02193535ec4ce2b82a627775bc6858d0f6aa Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Sat, 21 Sep 2024 22:29:40 +0200 Subject: [PATCH] chore(deps): disable default features for revm --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index cb4a754..6726686 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ futures = "0.3" parking_lot = "0.12" -revm = { version = "14", features = ["std", "serde"] } +revm = { version = "14", default-features = false, features = ["std", "serde"] } rustc-hash = "2.0" serde = "1.0"