Skip to content

Commit

Permalink
Make Clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
LindaGuiga committed Aug 26, 2024
1 parent 1724620 commit 1b991d9
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions evm_arithmetization/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@
#![allow(clippy::needless_range_loop)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::field_reassign_with_default)]
#![allow(clippy::too_long_first_doc_paragraph)]
#![feature(let_chains)]

// Individual STARK processing units
Expand Down
1 change: 1 addition & 0 deletions mpt_trie/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
//! hash of the node it replaces.
#![allow(incomplete_features)]
#![allow(clippy::too_long_first_doc_paragraph)]
#![deny(rustdoc::broken_intra_doc_links)]
#![deny(missing_debug_implementations)]
#![deny(missing_docs)]
Expand Down
1 change: 1 addition & 0 deletions proof_gen/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@
//! // Have the verifier attest validity of the proof.
//! assert!(verifier_state.verify(block_proof.intern).is_ok());
//! ```
#![allow(clippy::too_long_first_doc_paragraph)]

pub(crate) mod constants;
pub mod proof_gen;
Expand Down
2 changes: 2 additions & 0 deletions smt_trie/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::too_long_first_doc_paragraph)]

pub mod bits;
pub mod code;
pub mod db;
Expand Down
2 changes: 2 additions & 0 deletions zero_bin/common/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::too_long_first_doc_paragraph)]

pub mod block_interval;
pub mod debug_utils;
pub mod fs;
Expand Down
2 changes: 2 additions & 0 deletions zero_bin/prover/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::too_long_first_doc_paragraph)]

pub mod cli;

use std::future::Future;
Expand Down

0 comments on commit 1b991d9

Please sign in to comment.