Skip to content

Commit

Permalink
feat(builder): update builder crate to alloy types
Browse files Browse the repository at this point in the history
  • Loading branch information
dancoombs committed Oct 1, 2024
1 parent 95871b7 commit e87a9de
Show file tree
Hide file tree
Showing 26 changed files with 1,131 additions and 786 deletions.
400 changes: 374 additions & 26 deletions Cargo.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,12 @@ alloy-sol-types = "0.8.3"
alloy-consensus = "0.3.3"
alloy-contract = "0.3.3"
alloy-json-rpc = "0.3.3"
alloy-provider = { version = "0.3.3", default-features = false }
alloy-provider = { version = "0.3.3", default-features = false, features = ["reqwest", "reqwest-rustls-tls"] }
alloy-rpc-client = "0.3.3"
alloy-rpc-types-eth = "0.3.3"
alloy-rpc-types-trace = "0.3.3"
alloy-transport = "0.3.3"
alloy-transport-http = { version = "0.3.3", default-features = false, features = ["reqwest", "reqwest-rustls-tls"] }

# alloy other
alloy-rlp = "0.3.8"
Expand Down
17 changes: 12 additions & 5 deletions crates/builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,31 @@ rundler-task = { path = "../task" }
rundler-types = { path = "../types" }
rundler-utils = { path = "../utils" }

alloy-consensus.workspace = true
alloy-eips = "0.3.3"
alloy-primitives.workspace = true
alloy-signer = "0.3.3"
alloy-signer-aws = "0.3.3"
alloy-signer-local = "0.3.3"

anyhow.workspace = true
async-trait.workspace = true
aws-config = { version = "1.5.6", default-features = false }
aws-sdk-kms = { version = "1.44", default-features = false }
enum_dispatch = "0.3.13"
ethers.workspace = true
ethers-signers = {version = "2.0.14", features = ["aws"] }
futures.workspace = true
futures-timer = "3.0.3"
futures-util.workspace = true
jsonrpsee = { workspace = true, features = [ "http-client" ]}
linked-hash-map = "0.5.6"
metrics.workspace = true
num-traits = "0.2.19"
pin-project.workspace = true
prost.workspace = true
parse-display.workspace = true
reqwest.workspace = true
reqwest = { workspace = true, default-features = false, features = ["json"] }
rslock = "0.4.0"
rusoto_core = { version = "0.48.0", default-features = false, features = ["rustls"] }
rusoto_kms = { version = "0.48.0", default-features = false, features = ["rustls"] }
ruint = { version = "1.12.3", features = ["num-traits"]}
thiserror.workspace = true
tokio.workspace = true
tokio-util.workspace = true
Expand Down
Loading

0 comments on commit e87a9de

Please sign in to comment.