mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
52 lines
1.3 KiB
TOML
52 lines
1.3 KiB
TOML
[package]
|
|
name = "reth-invalid-block-hooks"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
revm.workspace = true
|
|
revm-bytecode.workspace = true
|
|
revm-database.workspace = true
|
|
reth-engine-primitives.workspace = true
|
|
reth-evm.workspace = true
|
|
reth-primitives-traits.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-revm = { workspace = true, features = ["serde"] }
|
|
reth-rpc-api = { workspace = true, features = ["client"] }
|
|
reth-tracing.workspace = true
|
|
reth-trie.workspace = true
|
|
|
|
# alloy
|
|
alloy-primitives.workspace = true
|
|
alloy-rlp.workspace = true
|
|
alloy-rpc-types-debug.workspace = true
|
|
alloy-consensus.workspace = true
|
|
|
|
# async
|
|
futures.workspace = true
|
|
|
|
# misc
|
|
eyre.workspace = true
|
|
jsonrpsee.workspace = true
|
|
pretty_assertions.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
[dev-dependencies]
|
|
alloy-eips.workspace = true
|
|
reth-chainspec.workspace = true
|
|
reth-ethereum-primitives.workspace = true
|
|
reth-evm-ethereum.workspace = true
|
|
reth-provider = { workspace = true, features = ["test-utils"] }
|
|
reth-revm = { workspace = true, features = ["test-utils"] }
|
|
reth-testing-utils.workspace = true
|
|
tempfile.workspace = true
|