mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Co-authored-by: Roman Krasiuk <rokrassyuk@gmail.com> Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com> Co-authored-by: Federico Gimenez <fgimenez@users.noreply.github.com>
64 lines
1.6 KiB
TOML
64 lines
1.6 KiB
TOML
[package]
|
|
name = "reth-engine-tree"
|
|
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-beacon-consensus.workspace = true
|
|
reth-blockchain-tree.workspace = true
|
|
reth-blockchain-tree-api.workspace = true
|
|
reth-chainspec.workspace = true
|
|
reth-consensus.workspace = true
|
|
reth-db.workspace = true
|
|
reth-db-api.workspace = true
|
|
reth-engine-primitives.workspace = true
|
|
reth-errors.workspace = true
|
|
reth-ethereum-consensus.workspace = true
|
|
reth-evm.workspace = true
|
|
reth-network-p2p.workspace = true
|
|
reth-payload-builder.workspace = true
|
|
reth-payload-primitives.workspace = true
|
|
reth-payload-validator.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-prune.workspace = true
|
|
reth-revm.workspace = true
|
|
reth-rpc-types.workspace = true
|
|
reth-stages-api.workspace = true
|
|
reth-static-file.workspace = true
|
|
reth-tasks.workspace = true
|
|
reth-tokio-util.workspace = true
|
|
reth-trie.workspace = true
|
|
revm.workspace = true
|
|
|
|
# common
|
|
futures.workspace = true
|
|
tokio = { workspace = true, features = ["macros", "sync"] }
|
|
tokio-stream = { workspace = true, features = ["sync"] }
|
|
|
|
|
|
# metrics
|
|
metrics.workspace = true
|
|
reth-metrics = { workspace = true, features = ["common"] }
|
|
|
|
# misc
|
|
aquamarine.workspace = true
|
|
parking_lot.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[dev-dependencies]
|
|
# reth
|
|
reth-network-p2p = { workspace = true, features = ["test-utils"] }
|
|
reth-prune-types.workspace = true
|
|
reth-stages = { workspace = true, features = ["test-utils"] }
|
|
reth-tracing.workspace = true
|
|
|
|
assert_matches.workspace = true |