diff --git a/Cargo.toml b/Cargo.toml index 402a7215..0824af84 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -169,9 +169,7 @@ 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" } -rug = { path = "patches/ethereum/rug" } secp256k1-30 = { package = "secp256k1", path = "patches/ethereum/secp256k1-30" } -secp256k1-31 = { package = "secp256k1", path = "patches/ethereum/secp256k1-31" } # Updates to the latest version darling = { path = "patches/darling" } diff --git a/patches/ethereum/rug/Cargo.toml b/patches/ethereum/rug/Cargo.toml deleted file mode 100644 index e2144e3e..00000000 --- a/patches/ethereum/rug/Cargo.toml +++ /dev/null @@ -1,19 +0,0 @@ -[package] -name = "rug" -version = "1.99.99" -description = "Patch to an empty crate" -license = "MIT" -repository = "https://github.com/serai-dex/serai/tree/develop/patches/ethereum/rug" -authors = ["Luke Parker "] -keywords = [] -edition = "2021" - -[package.metadata.docs.rs] -all-features = true -rustdoc-args = ["--cfg", "docsrs"] - -[workspace] - -[features] -std = [] -integer = [] diff --git a/patches/ethereum/rug/src/lib.rs b/patches/ethereum/rug/src/lib.rs deleted file mode 100644 index 0670b71f..00000000 --- a/patches/ethereum/rug/src/lib.rs +++ /dev/null @@ -1 +0,0 @@ -const _NEVER_COMPILED: [(); 0 - 1] = [(); 0 - 1]; diff --git a/patches/ethereum/secp256k1-31/Cargo.toml b/patches/ethereum/secp256k1-31/Cargo.toml deleted file mode 100644 index ce5cef6e..00000000 --- a/patches/ethereum/secp256k1-31/Cargo.toml +++ /dev/null @@ -1,23 +0,0 @@ -[package] -name = "secp256k1" -version = "0.31.99" -description = "Patch to an empty crate" -license = "MIT" -repository = "https://github.com/serai-dex/serai/tree/develop/patches/ethereum/secp256k1-31" -authors = ["Luke Parker "] -keywords = [] -edition = "2021" - -[package.metadata.docs.rs] -all-features = true -rustdoc-args = ["--cfg", "docsrs"] - -[workspace] - -[features] -alloc = [] -std = [] -rand = [] -serde = [] -global-context = [] -recovery = [] diff --git a/patches/ethereum/secp256k1-31/src/lib.rs b/patches/ethereum/secp256k1-31/src/lib.rs deleted file mode 100644 index 0670b71f..00000000 --- a/patches/ethereum/secp256k1-31/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 8b6572ea..3cc5dd17 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 = "31", default-features = false, features = ["std"] } +revm = { version = "31", default-features = false } ethereum-schnorr = { package = "ethereum-schnorr-contract", path = "../../../networks/ethereum/schnorr", default-features = false }