mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-16 09:56:17 -05:00
37 lines
1010 B
TOML
37 lines
1010 B
TOML
[package]
|
|
name = "reth-node-ethereum"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-primitives.workspace = true
|
|
reth-payload-builder.workspace = true
|
|
reth-basic-payload-builder.workspace = true
|
|
reth-ethereum-payload-builder.workspace = true
|
|
reth-rpc-types.workspace = true
|
|
reth-node-api.workspace = true
|
|
reth-node-builder.workspace = true
|
|
reth-tracing.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-transaction-pool.workspace = true
|
|
reth-network.workspace = true
|
|
|
|
# misc
|
|
eyre.workspace = true
|
|
serde.workspace = true
|
|
|
|
[dev-dependencies]
|
|
reth-db.workspace = true
|
|
|
|
[features]
|
|
# This is a workaround for reth-cli crate to allow this as mandatory dependency without breaking the build even if unused.
|
|
# This makes managing features and testing workspace easier because clippy always builds all members if --workspace is provided
|
|
optimism = [] |