From eeb36f526902048f67e3a5cacdc94b9958ca54fe Mon Sep 17 00:00:00 2001 From: rakita Date: Thu, 26 Sep 2024 03:27:11 +0200 Subject: [PATCH] bump primitives --- Cargo.lock | 2 +- crates/interpreter/Cargo.toml | 2 +- crates/precompile/Cargo.toml | 2 +- crates/primitives/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 777ee36472..7a0702c460 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3192,7 +3192,7 @@ dependencies = [ [[package]] name = "revm-primitives" -version = "9.0.2" +version = "10.0.0" dependencies = [ "alloy-eip2930", "alloy-eip7702", diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index 93d1a6eb40..c43e166394 100644 --- a/crates/interpreter/Cargo.toml +++ b/crates/interpreter/Cargo.toml @@ -22,7 +22,7 @@ rust_2018_idioms = "deny" all = "warn" [dependencies] -revm-primitives = { path = "../primitives", version = "9.0.2", default-features = false } +revm-primitives = { path = "../primitives", version = "10.0.0", default-features = false } paste = { version = "1.0", optional = true } phf = { version = "0.11", default-features = false, optional = true, features = [ diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index 1441be3b70..dbb24861cd 100644 --- a/crates/precompile/Cargo.toml +++ b/crates/precompile/Cargo.toml @@ -22,7 +22,7 @@ rust_2018_idioms = "deny" all = "warn" [dependencies] -revm-primitives = { path = "../primitives", version = "9.0.2", default-features = false } +revm-primitives = { path = "../primitives", version = "10.0.0", default-features = false } once_cell = { version = "1.19", default-features = false, features = ["alloc"] } # ecRecover diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index ae803f06cb..d1a16a2a98 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm", "types"] license = "MIT" name = "revm-primitives" repository = "https://github.com/bluealloy/revm" -version = "9.0.2" +version = "10.0.0" readme = "../../README.md" [package.metadata.docs.rs]