mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
129 lines
3.0 KiB
TOML
129 lines
3.0 KiB
TOML
[package]
|
|
name = "reth-node-core"
|
|
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-db = { workspace = true, features = ["mdbx"] }
|
|
reth-interfaces = { workspace = true, features = ["clap"] }
|
|
reth-provider.workspace = true
|
|
reth-network = { workspace = true, features = ["serde"] }
|
|
reth-rpc-engine-api.workspace = true
|
|
reth-rpc-builder.workspace = true
|
|
reth-rpc.workspace = true
|
|
reth-rpc-types.workspace = true
|
|
reth-rpc-types-compat.workspace = true
|
|
reth-rpc-api = { workspace = true, features = ["client"] }
|
|
reth-transaction-pool.workspace = true
|
|
reth-tracing.workspace = true
|
|
reth-config.workspace = true
|
|
reth-discv4.workspace = true
|
|
reth-net-nat.workspace = true
|
|
reth-network-api.workspace = true
|
|
reth-node-api.workspace = true
|
|
reth-tasks.workspace = true
|
|
reth-payload-builder.workspace = true
|
|
reth-basic-payload-builder.workspace = true
|
|
reth-optimism-payload-builder = { path = "../../crates/payload/optimism", optional = true }
|
|
reth-ethereum-payload-builder.workspace = true
|
|
reth-consensus-common.workspace = true
|
|
|
|
|
|
|
|
|
|
|
|
# misc
|
|
boyer-moore-magiclen = "0.2.16"
|
|
eyre.workspace = true
|
|
clap = { workspace = true, features = ["derive"] }
|
|
humantime = "2.1.0"
|
|
thiserror.workspace = true
|
|
tempfile.workspace = true
|
|
const-str = "0.5.6"
|
|
rayon.workspace = true
|
|
itertools.workspace = true
|
|
backon = "0.4"
|
|
pretty_assertions = "1.3.0"
|
|
|
|
|
|
# http/rpc
|
|
hyper = "0.14.25"
|
|
|
|
|
|
# test vectors generation
|
|
proptest.workspace = true
|
|
rand.workspace = true
|
|
|
|
|
|
# io
|
|
dirs-next = "2.0.0"
|
|
shellexpand = "3.0.0"
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
fdlimit = "0.3.0"
|
|
confy.workspace = true
|
|
toml = { workspace = true, features = ["display"] }
|
|
|
|
# tracing
|
|
tracing.workspace = true
|
|
|
|
# tui
|
|
comfy-table = "7.0"
|
|
crossterm = "0.27.0"
|
|
tui = "0.19.0"
|
|
human_bytes = "0.4.1"
|
|
|
|
|
|
# crypto
|
|
alloy-rlp.workspace = true
|
|
alloy-chains.workspace = true
|
|
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }
|
|
revm-inspectors.workspace = true
|
|
|
|
|
|
# async
|
|
tokio = { workspace = true, features = ["sync", "macros", "time", "rt-multi-thread"] }
|
|
futures.workspace = true
|
|
pin-project.workspace = true
|
|
|
|
# metrics
|
|
metrics-exporter-prometheus = "0.12.1"
|
|
metrics-util = "0.15.0"
|
|
metrics-process = "=1.0.14"
|
|
reth-metrics.workspace = true
|
|
metrics.workspace = true
|
|
once_cell.workspace = true
|
|
|
|
[features]
|
|
optimism = [
|
|
"reth-primitives/optimism",
|
|
"reth-optimism-payload-builder/optimism",
|
|
"reth-interfaces/optimism",
|
|
"reth-rpc/optimism",
|
|
"reth-rpc-engine-api/optimism",
|
|
"reth-transaction-pool/optimism",
|
|
"reth-provider/optimism",
|
|
"reth-network/optimism",
|
|
"reth-network-api/optimism",
|
|
"reth-payload-builder/optimism",
|
|
"reth-optimism-payload-builder/optimism",
|
|
"reth-ethereum-payload-builder/optimism",
|
|
"reth-node-api/optimism",
|
|
]
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
vergen = { version = "8.0.0", features = ["build", "cargo", "git", "git2"] }
|