diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index 2fb1da332f..43857132be 100644 --- a/crates/interpreter/Cargo.toml +++ b/crates/interpreter/Cargo.toml @@ -10,7 +10,7 @@ version = "1.0.0" readme = "../../README.md" [dependencies] -revm-primitives = { path = "../primitives", default-features = false } +revm-primitives = { path = "../primitives", version="1.0.0", default-features = false } #utility derive_more = "0.99" diff --git a/crates/precompiles/Cargo.toml b/crates/precompiles/Cargo.toml index c27c0b5463..19e5436a5b 100644 --- a/crates/precompiles/Cargo.toml +++ b/crates/precompiles/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/bluealloy/revm" version = "2.0.0" [dependencies] -revm-primitives = { path = "../primitives", default-features = false } +revm-primitives = { path = "../primitives", version="1.0.0", default-features = false } bn = { package = "substrate-bn", version = "0.6", default-features = false } k256 = { version = "0.11", default-features = false, features = ["ecdsa", "keccak256"] } num = { version = "0.4.0", default-features = false, features = ["alloc"] }