Skip to content

Commit 3676093

Browse files
committed
Task manager initial
1 parent 895328d commit 3676093

File tree

4 files changed

+420
-0
lines changed

4 files changed

+420
-0
lines changed

Cargo.lock

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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" }
4647
express-reth-exex = { path = "crates/reth/exex" }
4748
express-reth-rpc = { path = "crates/reth/rpc" }
4849
express-rpc-utils = { path = "crates/rpc/utils" }
50+
express-tasks = { path = "crates/tasks" }
4951
zkvm = { path = "crates/prover/zkvm" }
5052
zkvm-primitives = { path = "crates/prover/primitives" }
5153

@@ -65,6 +67,7 @@ digest = "0.10"
6567
eyre = "0.6"
6668
format_serde_error = { git = "https://github.com/AlexanderThaller/format_serde_error" }
6769
futures = "0.3"
70+
futures-util = "0.3"
6871
hex = { version = "0.4", features = ["serde"] }
6972
http = "1.0.0"
7073
hyper = "0.14.25"

crates/tasks/Cargo.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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 }

0 commit comments

Comments
 (0)