mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> Co-authored-by: Alexey Shekhirin <a.shekhirin@gmail.com>
77 lines
1.7 KiB
TOML
77 lines
1.7 KiB
TOML
[package]
|
|
name = "reth-node-builder"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
readme = "README.md"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
## reth
|
|
reth-auto-seal-consensus.workspace = true
|
|
reth-beacon-consensus.workspace = true
|
|
reth-blockchain-tree.workspace = true
|
|
reth-db-common.workspace = true
|
|
reth-exex.workspace = true
|
|
reth-evm.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-db = { workspace = true, features = ["mdbx"] }
|
|
reth-db-api.workspace = true
|
|
reth-rpc-engine-api.workspace = true
|
|
reth-rpc.workspace = true
|
|
reth-rpc-layer.workspace = true
|
|
reth-node-api.workspace = true
|
|
reth-node-core.workspace = true
|
|
reth-network.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-payload-builder.workspace = true
|
|
reth-transaction-pool.workspace = true
|
|
reth-tasks.workspace = true
|
|
reth-tracing.workspace = true
|
|
reth-network-p2p.workspace = true
|
|
reth-static-file.workspace = true
|
|
reth-prune.workspace = true
|
|
reth-stages.workspace = true
|
|
reth-config.workspace = true
|
|
reth-downloaders.workspace = true
|
|
reth-node-events.workspace = true
|
|
reth-consensus.workspace = true
|
|
reth-consensus-debug-client.workspace = true
|
|
reth-rpc-types.workspace = true
|
|
|
|
## async
|
|
futures.workspace = true
|
|
tokio = { workspace = true, features = [
|
|
"sync",
|
|
"macros",
|
|
"time",
|
|
"rt-multi-thread",
|
|
] }
|
|
tokio-stream.workspace = true
|
|
|
|
# ethereum
|
|
discv5.workspace = true
|
|
|
|
# crypto
|
|
secp256k1 = { workspace = true, features = [
|
|
"global-context",
|
|
"rand-std",
|
|
"recovery",
|
|
] }
|
|
|
|
## misc
|
|
aquamarine.workspace = true
|
|
eyre.workspace = true
|
|
fdlimit.workspace = true
|
|
confy.workspace = true
|
|
rayon.workspace = true
|
|
backon.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|