From 453c44b3cebe56544033a80aef69f20e064b483c Mon Sep 17 00:00:00 2001 From: zerosnacks Date: Tue, 1 Oct 2024 17:02:10 +0200 Subject: [PATCH 1/2] bump to 0.4.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3e2e47d..93dd559 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -94,7 +94,7 @@ significant_drop_in_scrutinee = "allow" significant_drop_tightening = "allow" [workspace.dependencies] -alloy = { version = "0.3.6", features = [ +alloy = { version = "0.4.0", features = [ "full", "node-bindings", "rpc-types-debug", From 6f42ec06c873ad94c8f475518907fd1071349c2d Mon Sep 17 00:00:00 2001 From: zerosnacks Date: Tue, 1 Oct 2024 17:06:51 +0200 Subject: [PATCH 2/2] allow needless return, related: https://github.com/tokio-rs/tokio/issues/6869#issuecomment-2375942611 --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 93dd559..70d0e6c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -92,6 +92,7 @@ non_send_fields_in_send_ty = "allow" redundant_pub_crate = "allow" significant_drop_in_scrutinee = "allow" significant_drop_tightening = "allow" +needless_return = "allow" [workspace.dependencies] alloy = { version = "0.4.0", features = [