Skip to content

Commit

Permalink
chore: bump alloy deps
Browse files Browse the repository at this point in the history
  • Loading branch information
prestwich committed Oct 4, 2024
1 parent 6d8db02 commit 765e5b6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
19 changes: 11 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[workspace]
members = [ "crates/*" ]
members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "0.8.0"
version = "0.9.0"
edition = "2021"
rust-version = "1.76"
authors = ["Zenith Contributors"]
Expand All @@ -12,18 +12,21 @@ repository = "https://github.com/init4tt/zenith"
license = "AGPL-3.0"

[workspace.dependencies]
alloy-primitives = { version = "0.8", features = ["serde", "tiny-keccak"] }
alloy-sol-types = { version = "0.8", features = ["json"] }
alloy-primitives = { version = "=0.8.5", features = ["serde", "tiny-keccak"] }
alloy-sol-types = { version = "=0.8.5", features = ["json"] }

alloy-rlp = { version = "0.3.4" }

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

aws-config = "1.1.7"
aws-sdk-kms = "1.15.0"

hex = { package = "const-hex", version = "1", default-features = false, features = ["alloc"] }
hex = { package = "const-hex", version = "1", default-features = false, features = [
"alloc",
] }
serde = { version = "1.0.197", features = ["derive"] }
tracing = "0.1.40"

zenith-types = { path = "crates/types" }
zenith-types = { path = "crates/types" }
2 changes: 1 addition & 1 deletion crates/builder/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ pub async fn ingest_rpc_handler(
return Ok(Json(alloy::rpc::json_rpc::Response {
payload: alloy::rpc::json_rpc::ResponsePayload::<(), ()>::Failure(ErrorPayload {
code: -6969,
message: "Method not found".to_string(),
message: "Method not found".into(),
data: None,
}),
id,
Expand Down

0 comments on commit 765e5b6

Please sign in to comment.