Skip to content

Commit

Permalink
style: add lints
Browse files Browse the repository at this point in the history
  • Loading branch information
Nugine committed Dec 10, 2024
1 parent 73a1bfd commit eb1b9fe
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
//! ZUC Stream Cipher Algorithms
#![deny(unsafe_code, missing_docs)]
#![deny(
unsafe_code, //
missing_docs,
)]
#![deny(
clippy::all,
clippy::pedantic,
clippy::cargo,
clippy::missing_docs_in_private_items
)]
#![allow(clippy::inline_always)]
#![warn(
clippy::todo, //
)]
#![allow(
clippy::inline_always, //
)]
// ---
#![cfg_attr(docsrs, feature(doc_cfg))]

Expand Down

0 comments on commit eb1b9fe

Please sign in to comment.