mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-14 17:05:06 -05:00
21 lines
1.1 KiB
TOML
21 lines
1.1 KiB
TOML
[workspace]
|
|
members = ["exex/hello-world", "exex/remote", "exex/tracking-state"]
|
|
|
|
# Explicitly set the resolver to version 2, which is the default for packages with edition >= 2021
|
|
# https://doc.rust-lang.org/edition-guide/rust-2021/default-cargo-resolver.html
|
|
resolver = "2"
|
|
|
|
[patch.'https://github.com/paradigmxyz/reth']
|
|
reth = { path = "../../bin/reth" }
|
|
reth-exex = { path = "../../crates/exex/exex" }
|
|
reth-node-ethereum = { path = "../../crates/ethereum/node" }
|
|
reth-tracing = { path = "../../crates/tracing" }
|
|
reth-node-api = { path = "../../crates/node/api" }
|
|
|
|
[patch.crates-io]
|
|
jsonrpsee = { git = "https://github.com/paradigmxyz/jsonrpsee", branch = "matt/make-rpc-service-pub" }
|
|
jsonrpsee-core = { git = "https://github.com/paradigmxyz/jsonrpsee", branch = "matt/make-rpc-service-pub" }
|
|
jsonrpsee-server = { git = "https://github.com/paradigmxyz/jsonrpsee", branch = "matt/make-rpc-service-pub" }
|
|
jsonrpsee-http-client = { git = "https://github.com/paradigmxyz/jsonrpsee", branch = "matt/make-rpc-service-pub" }
|
|
jsonrpsee-types = { git = "https://github.com/paradigmxyz/jsonrpsee", branch = "matt/make-rpc-service-pub" }
|