diff --git a/Cargo.toml b/Cargo.toml index 7fdd6999..81fb8068 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = [ "crates/orchestrator", "crates/da_clients/da-client-interface", "crates/da_clients/ethereum", - "crates/utils" + "crates/utils", ] [workspace.package] @@ -35,4 +35,4 @@ url = { version = "2.5.0" } uuid = { version = "1.7.0" } da-client-interface = { path = "crates/da_clients/da-client-interface" } ethereum-da-client = { path = "crates/da_clients/ethereum" } -utils = { path = "crates/utils" } \ No newline at end of file +utils = { path = "crates/utils" } diff --git a/crates/da_clients/da-client-interface/Cargo.toml b/crates/da_clients/da-client-interface/Cargo.toml index be0eb241..81a6f3d7 100644 --- a/crates/da_clients/da-client-interface/Cargo.toml +++ b/crates/da_clients/da-client-interface/Cargo.toml @@ -9,4 +9,4 @@ edition.workspace = true async-trait = { workspace = true } axum = { workspace = true } color-eyre = { workspace = true } -starknet = { workspace = true } \ No newline at end of file +starknet = { workspace = true } diff --git a/crates/da_clients/ethereum/Cargo.toml b/crates/da_clients/ethereum/Cargo.toml index 70a7e3c1..e5ab4758 100644 --- a/crates/da_clients/ethereum/Cargo.toml +++ b/crates/da_clients/ethereum/Cargo.toml @@ -5,14 +5,14 @@ edition.workspace = true [dependencies] alloy = { git = "https://github.com/alloy-rs/alloy", rev = "86027c9bb984f3a12a30ffd2a3c5f2f06595f1d6", features = [ - "providers", - "rpc-client", - "transport-http", + "providers", + "rpc-client", + "transport-http", ] } async-trait = { workspace = true } color-eyre = { workspace = true } +da-client-interface = { workspace = true } reqwest = { version = "0.11.24" } starknet = { workspace = true } url = { workspace = true } -da-client-interface = { workspace = true } -utils = { workspace = true } \ No newline at end of file +utils = { workspace = true } diff --git a/crates/orchestrator/Cargo.toml b/crates/orchestrator/Cargo.toml index 72400a1a..933b3490 100644 --- a/crates/orchestrator/Cargo.toml +++ b/crates/orchestrator/Cargo.toml @@ -8,7 +8,9 @@ async-trait = { workspace = true } axum = { workspace = true, features = ["macros"] } axum-macros = { workspace = true } color-eyre = { workspace = true } +da-client-interface = { workspace = true } dotenvy = { workspace = true } +ethereum-da-client = { workspace = true, optional = true } futures = { workspace = true } mongodb = { workspace = true, features = ["bson-uuid-1"], optional = true } omniqueue = { workspace = true, optional = true } @@ -22,11 +24,9 @@ tracing = { workspace = true } tracing-subscriber = { workspace = true, features = ["env-filter"] } url = { workspace = true } uuid = { workspace = true, features = ["v4", "serde"] } -da-client-interface = { workspace = true } -ethereum-da-client = { workspace = true, optional = true } [features] default = ["ethereum", "with_mongdb", "with_sqs"] ethereum = ["ethereum-da-client"] with_mongdb = ["mongodb"] -with_sqs = ["omniqueue"] \ No newline at end of file +with_sqs = ["omniqueue"] diff --git a/crates/utils/Cargo.toml b/crates/utils/Cargo.toml index 6cf10a7e..8fea4db4 100644 --- a/crates/utils/Cargo.toml +++ b/crates/utils/Cargo.toml @@ -6,4 +6,4 @@ edition.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -color-eyre = { workspace = true } \ No newline at end of file +color-eyre = { workspace = true }