2024-05-31 05:11:06 +00:00
|
|
|
[package]
|
|
|
|
name = "pruner"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
storage = { path = "../storage" }
|
2024-06-29 09:08:02 +00:00
|
|
|
storage-async = { path = "../storage-async" }
|
2024-05-31 05:11:06 +00:00
|
|
|
miner = { path = "../miner" }
|
|
|
|
anyhow = "1.0.86"
|
|
|
|
tokio = "1.37.0"
|
|
|
|
rand = "0.8.5"
|
|
|
|
task_executor = { path = "../../common/task_executor" }
|
2024-08-06 07:06:15 +00:00
|
|
|
tracing = "0.1.40"
|
|
|
|
ethereum-types = "0.14.1"
|
|
|
|
contract-interface = { path = "../../common/contract-interface" }
|
|
|
|
ethers = "^2"
|
2025-03-27 14:35:56 +00:00
|
|
|
zgs_spec = { path = "../../common/spec" }
|
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|