From fccd06b3765322ef631b1ea4c45bed3b68e01e39 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Tue, 4 Nov 2025 13:31:46 -0500 Subject: [PATCH] Bump `revm` --- Cargo.toml | 1 - patches/ethereum/libsecp256k1/Cargo.toml | 17 ----------------- patches/ethereum/libsecp256k1/src/lib.rs | 1 - processor/ethereum/router/Cargo.toml | 2 +- 4 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 patches/ethereum/libsecp256k1/Cargo.toml delete mode 100644 patches/ethereum/libsecp256k1/src/lib.rs diff --git a/Cargo.toml b/Cargo.toml index b0bf205f..40bd66ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -176,7 +176,6 @@ overflow-checks = true ark-ff-3 = { package = "ark-ff", path = "patches/ethereum/ark-ff-0.3" } ark-ff-4 = { package = "ark-ff", path = "patches/ethereum/ark-ff-0.4" } c-kzg = { path = "patches/ethereum/c-kzg" } -libsecp256k1 = { path = "patches/ethereum/libsecp256k1" } rug = { path = "patches/ethereum/rug" } secp256k1-30 = { package = "secp256k1", path = "patches/ethereum/secp256k1-30" } secp256k1-31 = { package = "secp256k1", path = "patches/ethereum/secp256k1-31" } diff --git a/patches/ethereum/libsecp256k1/Cargo.toml b/patches/ethereum/libsecp256k1/Cargo.toml deleted file mode 100644 index 491dfb03..00000000 --- a/patches/ethereum/libsecp256k1/Cargo.toml +++ /dev/null @@ -1,17 +0,0 @@ -[package] -name = "libsecp256k1" -version = "0.7.99" -description = "Patch to an empty crate" -license = "MIT" -repository = "https://github.com/serai-dex/serai/tree/develop/patches/ethereum/libsecp256k1" -authors = ["Luke Parker "] -keywords = [] -edition = "2021" - -[package.metadata.docs.rs] -all-features = true -rustdoc-args = ["--cfg", "docsrs"] - -[features] -std = [] -static-context = [] diff --git a/patches/ethereum/libsecp256k1/src/lib.rs b/patches/ethereum/libsecp256k1/src/lib.rs deleted file mode 100644 index 0670b71f..00000000 --- a/patches/ethereum/libsecp256k1/src/lib.rs +++ /dev/null @@ -1 +0,0 @@ -const _NEVER_COMPILED: [(); 0 - 1] = [(); 0 - 1]; diff --git a/processor/ethereum/router/Cargo.toml b/processor/ethereum/router/Cargo.toml index 0a46dead..d2a58c45 100644 --- a/processor/ethereum/router/Cargo.toml +++ b/processor/ethereum/router/Cargo.toml @@ -33,7 +33,7 @@ alloy-rpc-types-eth = { version = "1", default-features = false } alloy-transport = { version = "1", default-features = false } alloy-provider = { version = "1", default-features = false } -revm = { version = "29", default-features = false, features = ["std"] } +revm = { version = "31", default-features = false, features = ["std"] } ethereum-schnorr = { package = "ethereum-schnorr-contract", path = "../../../networks/ethereum/schnorr", default-features = false }