diff --git a/crates/database/interface/Cargo.toml b/crates/database/interface/Cargo.toml index 523cf45df1..5500fa4e5e 100644 --- a/crates/database/interface/Cargo.toml +++ b/crates/database/interface/Cargo.toml @@ -45,4 +45,4 @@ alloy-sol-types.workspace = true default = ["std"] std = ["serde?/std", "alloy-sol-types/std", "primitives/std", "state/std"] serde = ["dep:serde", "primitives/serde", "state/serde"] -asyncdb = ["dep:tokio"] +asyncdb = ["dep:tokio", "tokio/rt-multi-thread"] diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 3a7393c6f3..dff13cf077 100644 --- a/crates/revm/Cargo.toml +++ b/crates/revm/Cargo.toml @@ -66,6 +66,7 @@ serde = [ ] arbitrary = ["primitives/arbitrary"] asm-keccak = ["primitives/asm-keccak"] +asyncdb = ["database-interface/asyncdb"] # Enables alloydb inside database crate alloydb = ["database/alloydb"]