mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 02:49:55 +00:00
* update: logs * update: more logging * update: rename local ingest dir args * update: fix build * update: directory path * update: logs * update: log ts * update: fetch last block * update: time formatting * update: handle seconds * update: lmore logs * fix: provided args * update: logs * fix: build * update: indefinite wiat * update: run the right loop * update: remove offset * update: scan impl * update: log exists * update: collect s3 blocks * update: change the file * update: logs * fix: deserialization * fix: build * update: remove block * update: add logs * update: logs * update: logs * update: dates * update: ignore older blocks * update: hook up to sync * fix: build * fix: build * update: logs * update: logs * update: start height cond * update: height * update: loggy * update: cond * update: cond * update: cond * update: logs * update: fix height issues * update: logs * only collect s3 * update: log block * update: log both blocks * update; return s3 block * update: use local block * update: blocks * update: remove logs * update: logs * update: remove warns and logs * update: collection log * update: logs * update: logs * update: scan through heights when registering evm * update: add local ingest dir to other evm factory * fix: build * update: add cli cmd * update: remove additional arg * update: change where local ingest dir comes from * fix: receipts * update: deser format * update: fix build * update: logs * update: logs * update: logs * update: logs * update: share precompiles with engine * update: insert compiles * update: change sync dir * update: logs * update: logs * update: logs * update: fix build * update: pipe builder context through * update: untracked * update: pass through context * fix: build * fix: build * update: logs * update: logs * update: logs * update: fix cache passthrough * update: remove logs * update: logs * update: hour rollover * update: zero out hour * update: hour sync * update: cleanup code and speedup sync * update: speedup sync * update: remove logs * update: speed up sync * update: speed up sync * update: ingest in reverse * fix: iter rev * update: break line loop early * update: remove break * update: iteration speed * update: fix build * update: slow down tail ival * update: logs * update: skip last line * update: remove log * update: height * update: logs * update: return logs * update: disable attempt logs * update: tail interval * update: cleanup logs * update: add iter skip * update: fix build * update: skip -1 * fix: skip * fix: build * update: build * fix: build * update: logs * update: log idx * update: skip after enumerate * update: cleanup * update: more cleanup * update: refactor BuilderSharedState to HyperliquidSharedState * update: more cleanup * update: cleanup and refactor collect_local_block * update: error msg * update: readme * update: typo * update: file log * fix: typo build * update: debug log
70 lines
1.6 KiB
TOML
70 lines
1.6 KiB
TOML
[package]
|
|
name = "reth-evm-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-execution-types.workspace = true
|
|
reth-chainspec.workspace = true
|
|
reth-ethereum-forks.workspace = true
|
|
reth-revm.workspace = true
|
|
reth-evm.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-node-builder.workspace = true
|
|
|
|
# Ethereum
|
|
reth-primitives-traits.workspace = true
|
|
|
|
# Alloy
|
|
alloy-primitives.workspace = true
|
|
alloy-eips.workspace = true
|
|
alloy-evm.workspace = true
|
|
alloy-sol-types.workspace = true
|
|
alloy-consensus.workspace = true
|
|
|
|
sha2.workspace = true
|
|
serde_json.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
rmp-serde.workspace = true
|
|
lz4_flex.workspace = true
|
|
|
|
reth-hyperliquid-types.workspace = true
|
|
parking_lot.workspace = true
|
|
|
|
[dev-dependencies]
|
|
reth-testing-utils.workspace = true
|
|
reth-evm = { workspace = true, features = ["test-utils"] }
|
|
reth-revm = { workspace = true, features = ["test-utils"] }
|
|
reth-primitives = { workspace = true, features = ["secp256k1"] }
|
|
reth-execution-types.workspace = true
|
|
secp256k1.workspace = true
|
|
serde_json.workspace = true
|
|
alloy-genesis.workspace = true
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"reth-primitives/std",
|
|
"reth-revm/std",
|
|
"alloy-consensus/std",
|
|
"alloy-eips/std",
|
|
"alloy-genesis/std",
|
|
"alloy-primitives/std",
|
|
"secp256k1/std",
|
|
"reth-ethereum-forks/std",
|
|
"serde_json/std",
|
|
"reth-primitives-traits/std",
|
|
"reth-chainspec/std",
|
|
"alloy-evm/std",
|
|
"reth-execution-types/std",
|
|
"reth-evm/std",
|
|
]
|