File tree Expand file tree Collapse file tree 4 files changed +420
-0
lines changed Expand file tree Collapse file tree 4 files changed +420
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ members = [
1414 " crates/reth/rpc" ,
1515 " crates/rpc/types" ,
1616 " crates/state" ,
17+ " crates/tasks" ,
1718 " crates/test-utils" ,
1819 " crates/util/mmr" ,
1920 " crates/vtxjmt" ,
@@ -46,6 +47,7 @@ express-reth-db = { path = "crates/reth/db" }
4647express-reth-exex = { path = " crates/reth/exex" }
4748express-reth-rpc = { path = " crates/reth/rpc" }
4849express-rpc-utils = { path = " crates/rpc/utils" }
50+ express-tasks = { path = " crates/tasks" }
4951zkvm = { path = " crates/prover/zkvm" }
5052zkvm-primitives = { path = " crates/prover/primitives" }
5153
@@ -65,6 +67,7 @@ digest = "0.10"
6567eyre = " 0.6"
6668format_serde_error = { git = " https://github.com/AlexanderThaller/format_serde_error" }
6769futures = " 0.3"
70+ futures-util = " 0.3"
6871hex = { version = " 0.4" , features = [" serde" ] }
6972http = " 1.0.0"
7073hyper = " 0.14.25"
Original file line number Diff line number Diff line change 1+ [package ]
2+ edition = " 2021"
3+ name = " express-tasks"
4+ version = " 0.1.0"
5+
6+ [dependencies ]
7+ anyhow = { workspace = true }
8+ futures-util = { workspace = true }
9+ thiserror = { workspace = true }
10+ tokio = { workspace = true }
11+ tracing = { workspace = true }
12+
13+ [dev-dependencies ]
14+ arbitrary = { workspace = true }
You can’t perform that action at this time.
0 commit comments