Skip to content

Commit

Permalink
wip: adding new chains ds
Browse files Browse the repository at this point in the history
  • Loading branch information
dereksione committed Jun 29, 2023
1 parent df182aa commit 6955cd6
Show file tree
Hide file tree
Showing 10 changed files with 252 additions and 135 deletions.
60 changes: 59 additions & 1 deletion Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ thiserror = "1.0.37"
serde_json = "1.0.94"
serde = { version = "1.0", default-features = false }
rand = "0.8.5"
parse-display = { version = "0.8.1"}


## tokio
Expand Down
1 change: 1 addition & 0 deletions bin/reth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ hex = "0.4"
thiserror = { workspace = true }
pretty_assertions = "1.3.0"
humantime = "2.1.0"
parse-display.workspace = true

[features]
jemalloc = ["dep:jemallocator", "dep:jemalloc-ctl"]
Expand Down
3 changes: 3 additions & 0 deletions crates/net/eth-wire/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ bytes.workspace = true
thiserror = { workspace = true }
serde = { workspace = true, optional = true }

#symphony
symphony-primitives = { workspace = true }

# reth
reth-codecs = { path = "../../storage/codecs" }
reth-primitives = { workspace = true }
Expand Down
4 changes: 4 additions & 0 deletions crates/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ repository.workspace = true
description = "Commonly used types in reth."

[dependencies]
#symphony
symphony-primitives = { workspace = true }

# reth
reth-rlp = { workspace = true, features = ["std", "derive", "ethereum-types"] }
reth-rlp-derive = { path = "../rlp/rlp-derive" }
Expand Down Expand Up @@ -57,6 +60,7 @@ url = "2.3"
impl-serde = "0.4.0"
once_cell = "1.17.0"
zstd = { version = "0.12", features = ["experimental"] }
parse-display = { workspace = true }

# proof related
triehash = "0.8"
Expand Down
Loading

0 comments on commit 6955cd6

Please sign in to comment.