mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
68 lines
1.6 KiB
TOML
68 lines
1.6 KiB
TOML
[package]
|
|
name = "reth-chain-state"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Reth state related types and functionality."
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-chainspec.workspace = true
|
|
reth-errors.workspace = true
|
|
reth-execution-types.workspace = true
|
|
reth-metrics.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-primitives-traits.workspace = true
|
|
reth-storage-api.workspace = true
|
|
reth-trie.workspace = true
|
|
|
|
# ethereum
|
|
alloy-eips.workspace = true
|
|
alloy-primitives.workspace = true
|
|
alloy-consensus.workspace = true
|
|
revm.workspace = true
|
|
|
|
# async
|
|
tokio = { workspace = true, default-features = false, features = ["sync", "macros"] }
|
|
tokio-stream = { workspace = true, features = ["sync"] }
|
|
|
|
# tracing
|
|
tracing.workspace = true
|
|
|
|
# misc
|
|
derive_more.workspace = true
|
|
metrics.workspace = true
|
|
parking_lot.workspace = true
|
|
pin-project.workspace = true
|
|
|
|
# optional deps for test-utils
|
|
alloy-signer = { workspace = true, optional = true }
|
|
alloy-signer-local = { workspace = true, optional = true }
|
|
rand = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
reth-primitives-traits = { workspace = true, features = ["test-utils"] }
|
|
reth-testing-utils.workspace = true
|
|
alloy-signer.workspace = true
|
|
alloy-signer-local.workspace = true
|
|
alloy-consensus.workspace = true
|
|
rand.workspace = true
|
|
|
|
[features]
|
|
test-utils = [
|
|
"alloy-signer",
|
|
"alloy-signer-local",
|
|
"rand",
|
|
"reth-chainspec/test-utils",
|
|
"reth-primitives/test-utils",
|
|
"reth-primitives-traits/test-utils",
|
|
"reth-trie/test-utils",
|
|
"revm/test-utils",
|
|
]
|