From 083e0ca0c18c11d5aaa0f8d796ae1bc4ff880053 Mon Sep 17 00:00:00 2001 From: Franklin Delehelle Date: Fri, 25 Oct 2024 14:40:27 +0200 Subject: [PATCH] chore: clippy --- devenv.lock | 20 ++++++++++---------- recursion-framework/src/circuit_builder.rs | 2 -- ryhope/src/lib.rs | 2 +- 3 files changed, 11 insertions(+), 13 deletions(-) diff --git a/devenv.lock b/devenv.lock index e8c3e821c..0111c0850 100644 --- a/devenv.lock +++ b/devenv.lock @@ -3,10 +3,10 @@ "devenv": { "locked": { "dir": "src/modules", - "lastModified": 1728993896, + "lastModified": 1729857292, "owner": "cachix", "repo": "devenv", - "rev": "dc7ebaf872306526ea6dcbb2122acca792680701", + "rev": "d9156ba99fed6f4bc4d84b8ff1b442f04a98210a", "type": "github" }, "original": { @@ -24,10 +24,10 @@ "rust-analyzer-src": "rust-analyzer-src" }, "locked": { - "lastModified": 1728973961, + "lastModified": 1729838036, "owner": "nix-community", "repo": "fenix", - "rev": "d6a9ff4d1e60c347a23bc96ccdb058d37a810541", + "rev": "c9f079dab2456bd75da8539b7129f8aaea9d4a2d", "type": "github" }, "original": { @@ -88,10 +88,10 @@ }, "nixpkgs-stable": { "locked": { - "lastModified": 1728740863, + "lastModified": 1729691686, "owner": "NixOS", "repo": "nixpkgs", - "rev": "a3f9ad65a0bf298ed5847629a57808b97e6e8077", + "rev": "32e940c7c420600ef0d1ef396dc63b04ee9cad37", "type": "github" }, "original": { @@ -111,10 +111,10 @@ "nixpkgs-stable": "nixpkgs-stable" }, "locked": { - "lastModified": 1728778939, + "lastModified": 1729104314, "owner": "cachix", "repo": "pre-commit-hooks.nix", - "rev": "ff68f91754be6f3427e4986d7949e6273659be1d", + "rev": "3c3e88f0f544d6bb54329832616af7eb971b6be6", "type": "github" }, "original": { @@ -134,10 +134,10 @@ "rust-analyzer-src": { "flake": false, "locked": { - "lastModified": 1728921748, + "lastModified": 1729792465, "owner": "rust-lang", "repo": "rust-analyzer", - "rev": "0319586ef2a2636f6d6b891690b7ebebf4337c85", + "rev": "6a67a4d3cd480dbbc3b1dec461a31b1bea1dfba4", "type": "github" }, "original": { diff --git a/recursion-framework/src/circuit_builder.rs b/recursion-framework/src/circuit_builder.rs index 0ebb0668c..13d727989 100644 --- a/recursion-framework/src/circuit_builder.rs +++ b/recursion-framework/src/circuit_builder.rs @@ -386,7 +386,6 @@ pub(crate) mod tests { } impl< - 'a, F: SerializableRichField, const D: usize, const NUM_VERIFIERS: usize, @@ -457,7 +456,6 @@ pub(crate) mod tests { } impl< - 'a, F: SerializableRichField, const D: usize, const NUM_VERIFIERS: usize, diff --git a/ryhope/src/lib.rs b/ryhope/src/lib.rs index 8ed71d628..240f812ae 100644 --- a/ryhope/src/lib.rs +++ b/ryhope/src/lib.rs @@ -166,7 +166,7 @@ where let mut payload = self.storage.data().fetch(item.k()).await; payload.aggregate(child_data.into_iter()); - plan.done(&item.k())?; + plan.done(item.k())?; self.storage .data_mut() .store(item.k().to_owned(), payload)