feat: Completely decouple rpc-types to standalone crate (#5193)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
evalir
2023-10-28 17:00:47 +09:00
committed by GitHub
parent ffe1a88417
commit 76e751eef4
53 changed files with 1617 additions and 957 deletions

11
Cargo.lock generated
View File

@ -2618,6 +2618,7 @@ dependencies = [
"reth-revm",
"reth-rpc-builder",
"reth-rpc-types",
"reth-rpc-types-compat",
"reth-tasks",
"reth-transaction-pool",
"tokio",
@ -6019,6 +6020,7 @@ dependencies = [
"reth-nippy-jar",
"reth-primitives",
"reth-rpc-types",
"reth-rpc-types-compat",
"revm-primitives",
"secp256k1 0.27.0",
"thiserror",
@ -6262,6 +6264,7 @@ dependencies = [
"rayon",
"reth-codecs",
"reth-primitives",
"reth-rpc-types",
"revm",
"revm-primitives",
"secp256k1 0.27.0",
@ -6498,15 +6501,21 @@ version = "0.1.0-alpha.10"
dependencies = [
"alloy-primitives",
"alloy-rlp",
"arbitrary",
"bytes",
"c-kzg",
"itertools 0.11.0",
"jsonrpsee-types",
"proptest",
"proptest-derive",
"rand 0.8.5",
"reth-primitives",
"secp256k1 0.27.0",
"serde",
"serde_json",
"serde_with",
"similar-asserts",
"thiserror",
"url",
]
[[package]]