From 6eea888e2fd7e0868505a86920d8df0f85f6a5e7 Mon Sep 17 00:00:00 2001 From: 0xfourzerofour Date: Tue, 6 Feb 2024 09:13:49 -0500 Subject: [PATCH] feat(pgamoy): add dependencies in order --- bin/rundler/Cargo.toml | 2 +- crates/builder/Cargo.toml | 2 +- crates/sim/Cargo.toml | 2 +- crates/types/Cargo.toml | 5 +++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/bin/rundler/Cargo.toml b/bin/rundler/Cargo.toml index d9ce4fd43..8d5caa7a4 100644 --- a/bin/rundler/Cargo.toml +++ b/bin/rundler/Cargo.toml @@ -20,11 +20,11 @@ rundler-types = { path = "../../crates/types" } rundler-utils = { path = "../../crates/utils" } # CLI dependencies +alloy-chains.workspace = true anyhow.workspace = true clap = { version = "4.4.4", features = ["derive", "env"] } dotenv = "0.15.0" ethers.workspace = true -alloy-chains.workspace = true itertools = "0.11.0" metrics = "0.21.0" metrics-exporter-prometheus = "0.12.0" diff --git a/crates/builder/Cargo.toml b/crates/builder/Cargo.toml index 7e9d03708..3682258bb 100644 --- a/crates/builder/Cargo.toml +++ b/crates/builder/Cargo.toml @@ -14,11 +14,11 @@ rundler-task = { path = "../task" } rundler-types = { path = "../types" } rundler-utils = { path = "../utils" } +alloy-chains.workspace = true anyhow.workspace = true async-trait.workspace = true enum_dispatch = "0.3.11" ethers.workspace = true -alloy-chains.workspace = true ethers-signers = {version = "2.0.8", features = ["aws"] } futures.workspace = true futures-timer = "3.0.2" diff --git a/crates/sim/Cargo.toml b/crates/sim/Cargo.toml index 538ec655d..3201b76ed 100644 --- a/crates/sim/Cargo.toml +++ b/crates/sim/Cargo.toml @@ -11,11 +11,11 @@ rundler-provider = { path = "../provider" } rundler-types = { path = "../types" } rundler-utils = { path = "../utils" } +alloy-chains.workspace = true anyhow.workspace = true arrayvec = "0.7.2" async-trait.workspace = true ethers.workspace = true -alloy-chains.workspace = true futures-util.workspace = true indexmap = "2.0.0" parse-display.workspace = true diff --git a/crates/types/Cargo.toml b/crates/types/Cargo.toml index a93217f7f..7dcb32b9f 100644 --- a/crates/types/Cargo.toml +++ b/crates/types/Cargo.toml @@ -8,11 +8,12 @@ repository.workspace = true [dependencies] rundler-utils = { path = "../utils" } -constcat = "0.4.1" + +alloy-chains.workspace = true anyhow.workspace = true chrono = "0.4.24" +constcat = "0.4.1" ethers.workspace = true -alloy-chains.workspace = true parse-display = "0.8.0" serde.workspace = true serde_json.workspace = true