Skip to content

Commit 0b0fdac

Browse files
committed
chore: bump jsonrpsee
Signed-off-by: Gustavo Inacio <[email protected]>
1 parent c26e552 commit 0b0fdac

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ repository = "https://github.com/semiotic-ai/timeline-aggregation-protocol"
1212
alloy = { version = "0.4.2", features = ["full"] }
1313
serde = { version = "1.0.163", features = ["derive"] }
1414
rstest = "0.22.0"
15-
anyhow = { version = "1.0.70", default-features = false }
15+
anyhow = { version = "1.0.89" }
1616
tokio = { version = "1.40.0", features = ["macros", "signal"] }
1717
rand = "0.8.5"
18-
jsonrpsee = { version = "0.18.0", features = ["macros", "server"] }
18+
jsonrpsee = { version = "0.24.7", features = ["macros", "server"] }

tap_aggregator/Cargo.toml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,17 @@ tracing-subscriber = "0.3.17"
2525
log = "0.4.19"
2626
prometheus = "0.13.3"
2727
axum = { version = "0.7.5", features = [
28-
"http1",
29-
"json",
30-
"matched-path",
31-
"original-uri",
32-
"query",
33-
"tokio",
28+
"http1",
29+
"json",
30+
"matched-path",
31+
"original-uri",
32+
"query",
33+
"tokio",
3434
], default-features = false }
3535
futures-util = "0.3.28"
3636
lazy_static = "1.4.0"
3737
ruint = "1.10.1"
38+
tower = { version = "0.4", features = ["util"] }
3839

3940
[dev-dependencies]
4041
jsonrpsee = { workspace = true, features = ["http-client", "jsonrpsee-core"] }

tap_aggregator/src/server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ pub async fn run_server(
233233
accepted_addresses,
234234
domain_separator,
235235
};
236-
let handle = server.start(rpc_impl.into_rpc())?;
236+
let handle = server.start(rpc_impl.into_rpc());
237237
Ok((handle, addr))
238238
}
239239

0 commit comments

Comments
 (0)