Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.

Commit 765e5b6

Browse files
committed
chore: bump alloy deps
1 parent 6d8db02 commit 765e5b6

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

Cargo.toml

+11-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[workspace]
2-
members = [ "crates/*" ]
2+
members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.8.0"
6+
version = "0.9.0"
77
edition = "2021"
88
rust-version = "1.76"
99
authors = ["Zenith Contributors"]
@@ -12,18 +12,21 @@ repository = "https://github.com/init4tt/zenith"
1212
license = "AGPL-3.0"
1313

1414
[workspace.dependencies]
15-
alloy-primitives = { version = "0.8", features = ["serde", "tiny-keccak"] }
16-
alloy-sol-types = { version = "0.8", features = ["json"] }
15+
alloy-primitives = { version = "=0.8.5", features = ["serde", "tiny-keccak"] }
16+
alloy-sol-types = { version = "=0.8.5", features = ["json"] }
17+
1718
alloy-rlp = { version = "0.3.4" }
1819

19-
alloy = { version = "=0.3.6", features = ["full", "json-rpc", "signer-aws"] }
20-
alloy-contract = { version = "=0.3.6", features = ["pubsub"] }
20+
alloy = { version = "=0.4.2", features = ["full", "json-rpc", "signer-aws"] }
21+
alloy-contract = { version = "=0.4.2", features = ["pubsub"] }
2122

2223
aws-config = "1.1.7"
2324
aws-sdk-kms = "1.15.0"
2425

25-
hex = { package = "const-hex", version = "1", default-features = false, features = ["alloc"] }
26+
hex = { package = "const-hex", version = "1", default-features = false, features = [
27+
"alloc",
28+
] }
2629
serde = { version = "1.0.197", features = ["derive"] }
2730
tracing = "0.1.40"
2831

29-
zenith-types = { path = "crates/types" }
32+
zenith-types = { path = "crates/types" }

crates/builder/src/service.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ pub async fn ingest_rpc_handler(
124124
return Ok(Json(alloy::rpc::json_rpc::Response {
125125
payload: alloy::rpc::json_rpc::ResponsePayload::<(), ()>::Failure(ErrorPayload {
126126
code: -6969,
127-
message: "Method not found".to_string(),
127+
message: "Method not found".into(),
128128
data: None,
129129
}),
130130
id,

0 commit comments

Comments
 (0)