From e9f798c2ba5535609e687ac54c2ed35c3af7055d Mon Sep 17 00:00:00 2001 From: Thomas Letan Date: Wed, 16 Apr 2025 11:07:37 +0200 Subject: [PATCH] EVM Node: Bump num-derive to 0.4 for native executed kernels This is to align with what is done when we bumped the Rust version used to build the latest kernel to 1.86.0. See https://gitlab.com/tezos/tezos/-/merge_requests/17736/. --- etherlink/kernel_bifrost/Cargo.toml | 2 +- etherlink/kernel_calypso/Cargo.toml | 2 +- etherlink/kernel_calypso2/Cargo.toml | 2 +- etherlink/lib_wasm_runtime/Cargo.lock | 10 +++++----- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/etherlink/kernel_bifrost/Cargo.toml b/etherlink/kernel_bifrost/Cargo.toml index e3ca64b843d3..eee2e93a59e6 100644 --- a/etherlink/kernel_bifrost/Cargo.toml +++ b/etherlink/kernel_bifrost/Cargo.toml @@ -29,7 +29,7 @@ anyhow = "1.0" primitive-types = { version = "0.12.1", default-features = false } num-bigint = { version = "0.4", default-features = false } num-traits = "0.2.8" -num-derive = "0.3" +num-derive = "0.4" ethereum = { version = "0.14.0", default-features = false } ethbloom = { version = "0.13.0", default-features = false, features = ["rlp"] } softfloat = "1.0.0" diff --git a/etherlink/kernel_calypso/Cargo.toml b/etherlink/kernel_calypso/Cargo.toml index 4b581343412e..9d19e970b4aa 100644 --- a/etherlink/kernel_calypso/Cargo.toml +++ b/etherlink/kernel_calypso/Cargo.toml @@ -29,7 +29,7 @@ anyhow = "1.0" primitive-types = { version = "0.12.1", default-features = false } num-bigint = { version = "0.4", default-features = false } num-traits = "0.2.8" -num-derive = "0.3" +num-derive = "0.4" ethereum = { version = "0.14.0", default-features = false } ethbloom = { version = "0.13.0", default-features = false, features = ["rlp"] } softfloat = "1.0.0" diff --git a/etherlink/kernel_calypso2/Cargo.toml b/etherlink/kernel_calypso2/Cargo.toml index 224dbd63916c..96b741427e55 100644 --- a/etherlink/kernel_calypso2/Cargo.toml +++ b/etherlink/kernel_calypso2/Cargo.toml @@ -29,7 +29,7 @@ anyhow = "1.0" primitive-types = { version = "0.12.1", default-features = false } num-bigint = { version = "0.4", default-features = false } num-traits = "0.2.8" -num-derive = "0.3" +num-derive = "0.4" ethereum = { version = "0.14.0", default-features = false } ethbloom = { version = "0.13.0", default-features = false, features = ["rlp"] } softfloat = "1.0.0" diff --git a/etherlink/lib_wasm_runtime/Cargo.lock b/etherlink/lib_wasm_runtime/Cargo.lock index 792664bfd2ec..f94d82ce48bb 100644 --- a/etherlink/lib_wasm_runtime/Cargo.lock +++ b/etherlink/lib_wasm_runtime/Cargo.lock @@ -1370,9 +1370,9 @@ dependencies = [ [[package]] name = "dlmalloc" -version = "0.2.7" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9b5e0d321d61de16390ed273b647ce51605b575916d3c25e6ddf27a1e140035" +checksum = "8cff88b751e7a276c4ab0e222c3f355190adc6dde9ce39c851db39da34990df7" dependencies = [ "cfg-if", "libc", @@ -3151,13 +3151,13 @@ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" [[package]] name = "num-derive" -version = "0.3.3" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" +checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.96", ] [[package]] -- GitLab