From eb8fbc3b6145a298a0ad4ccf881ca7d5b02d91bf Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Sun, 5 May 2024 14:26:17 +0100 Subject: [PATCH] chore: fix order --- relay_rpc/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/relay_rpc/Cargo.toml b/relay_rpc/Cargo.toml index bc5f4c4..993dcb4 100644 --- a/relay_rpc/Cargo.toml +++ b/relay_rpc/Cargo.toml @@ -7,8 +7,8 @@ license = "Apache-2.0" [features] cacao = [ "dep:erc6492", - "dep:alloy-transport", "dep:alloy-provider", + "dep:alloy-transport", "dep:alloy-primitives", ] @@ -36,8 +36,8 @@ once_cell = "1.16" jsonwebtoken = "8.1" sha2 = { version = "0.10.6" } url = "2" -alloy-transport = { git = "https://github.com/alloy-rs/alloy.git", rev = "d68a6b7", optional = true } alloy-provider = { git = "https://github.com/alloy-rs/alloy.git", rev = "d68a6b7", optional = true } +alloy-transport = { git = "https://github.com/alloy-rs/alloy.git", rev = "d68a6b7", optional = true } alloy-primitives = { version = "0.7.0", optional = true } erc6492 = { git = "https://github.com/WalletConnect/erc6492.git", optional = true } strum = { version = "0.26", features = ["strum_macros", "derive"] }