Skip to content

Commit

Permalink
refactor(build): use alloy as dependency instead of invidivual crates (
Browse files Browse the repository at this point in the history
  • Loading branch information
morph-dev authored Oct 13, 2024
1 parent 19b1b75 commit f4eb3e1
Show file tree
Hide file tree
Showing 110 changed files with 384 additions and 336 deletions.
178 changes: 105 additions & 73 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 4 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@ categories = ["cryptography::cryptocurrencies"]
description = "A Rust implementation of the Ethereum Portal Network"

[dependencies]
alloy-eips.workspace = true
alloy-primitives.workspace = true
alloy-provider = { version = "0.4.2", features = ["ipc", "ws"]}
alloy-pubsub = { version = "0.4.2" }
alloy-rpc-types.workspace = true
alloy = { workspace = true, features = ["eips", "provider-ipc", "provider-ws", "pubsub", "reqwest", "rpc-types"] }
anyhow.workspace = true
clap.workspace = true
dirs = "5.0.1"
Expand Down Expand Up @@ -80,11 +76,8 @@ members = [
]

[workspace.dependencies]
alloy-consensus = "0.4.2"
alloy-eips = "0.4.2"
alloy-primitives = { version ="0.8.7" , features = ["map-hashbrown"] }
alloy-rlp = "0.3.8"
alloy-rpc-types = "0.4.2"
alloy = { version = "0.4.2", default-features = false, features = ["std"] }
alloy-rlp = { version = "0.3.8", default-features = false, features = ["derive"] }
anyhow = "1.0.68"
async-trait = "0.1.68"
bytes = "1.3.0"
Expand Down Expand Up @@ -114,7 +107,7 @@ r2d2 = "0.8.9"
r2d2_sqlite = "0.24.0"
rand = "0.8.5"
reqwest = { version = "0.12.7", features = ["native-tls-vendored", "json"] }
reth-ipc = { tag = "v1.0.7", git = "https://github.com/paradigmxyz/reth.git"}
reth-ipc = { tag = "v1.0.8", git = "https://github.com/paradigmxyz/reth.git"}
revm = { version = "14.0.3", default-features = false, features = ["std", "secp256k1", "serde-json", "c-kzg"] }
revm-primitives = { version = "10.0.0", default-features = false, features = ["std", "serde"] }
rpc = { path = "rpc"}
Expand Down
2 changes: 1 addition & 1 deletion e2store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ authors = ["https://github.com/ethereum/trin/graphs/contributors"]


[dependencies]
alloy-primitives.workspace = true
alloy = { workspace = true, features = ["rlp"] }
alloy-rlp.workspace = true
anyhow.workspace = true
clap = { workspace = true, optional = true }
Expand Down
Loading

0 comments on commit f4eb3e1

Please sign in to comment.