Files
reth/crates/miner/Cargo.toml
2023-04-10 19:22:10 +02:00

27 lines
588 B
TOML

[package]
name = "reth-miner"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/paradigmxyz/reth"
readme = "README.md"
description = "Block production"
[dependencies]
## reth
reth-primitives = { path = "../primitives" }
reth-rpc-types = { path = "../rpc/rpc-types" }
reth-rlp = { path = "../rlp" }
## async
tokio = { version = "1", features = ["sync"] }
tokio-stream = "0.1"
futures-util = "0.3"
futures-core = "0.3"
## misc
thiserror = "1.0"
sha2 = { version = "0.10", default-features = false }
parking_lot = "0.12"
tracing = "0.1.37"