Skip to content

Commit

Permalink
taplo
Browse files Browse the repository at this point in the history
  • Loading branch information
apoorvsadana authored and Tranduy1dol committed Aug 1, 2024
1 parent 60bd9c3 commit d5ec29f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = [
"crates/orchestrator",
"crates/da_clients/da-client-interface",
"crates/da_clients/ethereum",
"crates/utils"
"crates/utils",
]

[workspace.package]
Expand Down Expand Up @@ -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" }
utils = { path = "crates/utils" }
2 changes: 1 addition & 1 deletion crates/da_clients/da-client-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ edition.workspace = true
async-trait = { workspace = true }
axum = { workspace = true }
color-eyre = { workspace = true }
starknet = { workspace = true }
starknet = { workspace = true }
10 changes: 5 additions & 5 deletions crates/da_clients/ethereum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
utils = { workspace = true }
6 changes: 3 additions & 3 deletions crates/orchestrator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand All @@ -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"]
with_sqs = ["omniqueue"]
2 changes: 1 addition & 1 deletion crates/utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
color-eyre = { workspace = true }

0 comments on commit d5ec29f

Please sign in to comment.