Skip to content

Commit 0200611

Browse files
committed
chore: fix tokio features deps
1 parent 787d516 commit 0200611

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

aggregation_mode/gateway/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ bincode = "1.3.3"
1515
actix-web = "4"
1616
actix-multipart = "0.7.2"
1717
alloy = { workspace = true }
18-
tokio = { version = "1", features = ["time"]}
18+
tokio = { version = "1", features = ["time", "macros", "rt-multi-thread"]}
1919
# TODO: enable tls
2020
sqlx = { version = "0.8", features = [ "runtime-tokio", "postgres", "uuid", "bigdecimal" ] }
2121
hex = "0.4"

aggregation_mode/payments_poller/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tracing = { version = "0.1", features = ["log"] }
1111
tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
1212
actix-web = "4"
1313
alloy = { workspace = true }
14-
tokio = { version = "1", features = ["time"]}
14+
tokio = { version = "1", features = ["time", "macros", "rt-multi-thread"]}
1515
# TODO: enable tls
1616
sqlx = { version = "0.8", features = [ "runtime-tokio", "postgres", "uuid", "bigdecimal" ] }
1717
hex = "0.4"

aggregation_mode/proof_aggregator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ agg_mode_sdk = { workspace = true }
1515
tracing = { version = "0.1", features = ["log"] }
1616
tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
1717
c-kzg = "2.1.1"
18-
tokio = { version = "1", features = ["time"]}
18+
tokio = { version = "1", features = ["time", "macros", "rt-multi-thread"]}
1919
sha3 = "0.10.8"
2020
reqwest = { version = "0.12" }
2121
ciborium = "=0.2.2"

aggregation_mode/sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ tracing = { version = "0.1", features = ["log"] }
1313
tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
1414
bincode = "1.3.3"
1515
reqwest = { version = "0.12", features = ["json", "multipart"] }
16-
tokio = { version = "1", features = ["time"]}
16+
tokio = { version = "1", features = ["time", "macros", "rt-multi-thread"]}
1717
sha3 = { version = "0.10.8" }

0 commit comments

Comments
 (0)