2024-01-03 10:24:52 +00:00
|
|
|
[package]
|
|
|
|
|
name = "storage-async"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2024-04-08 05:54:01 +00:00
|
|
|
anyhow = { version = "1.0.58", features = ["backtrace"] }
|
2024-01-03 10:24:52 +00:00
|
|
|
shared_types = { path = "../shared_types" }
|
|
|
|
|
storage = { path = "../storage" }
|
|
|
|
|
task_executor = { path = "../../common/task_executor" }
|
2025-11-26 08:01:58 +00:00
|
|
|
append_merkle = { path = "../../common/append_merkle" }
|
2024-01-03 10:24:52 +00:00
|
|
|
tokio = { version = "1.19.2", features = ["sync"] }
|
2024-06-29 09:08:02 +00:00
|
|
|
tracing = "0.1.35"
|
2024-11-13 09:07:34 +00:00
|
|
|
eth2_ssz = "0.4.0"
|
|
|
|
|
backtrace = "0.3"
|