mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-30 01:28:21 -05:00
28 lines
595 B
TOML
28 lines
595 B
TOML
[package]
|
|
name = "reth-tasks"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Task management"
|
|
|
|
[dependencies]
|
|
|
|
## async
|
|
tokio = { workspace = true, features = ["sync", "rt"] }
|
|
tracing-futures = "0.2"
|
|
futures-util.workspace = true
|
|
|
|
## misc
|
|
tracing.workspace = true
|
|
thiserror.workspace = true
|
|
dyn-clone = "1.0"
|
|
|
|
## rpc/metrics
|
|
reth-metrics.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["sync", "rt", "rt-multi-thread", "time", "macros"] }
|