clippy: Deny `unwrap_used`

In the places where `unwrap_used` is currently at `warn`, change it to
be `deny` (stricter).
This commit is contained in:
Lorenz Leutgeb 2026-04-15 01:17:47 +02:00
parent 4d57ba496d
commit 91b2fd8986
No known key found for this signature in database
6 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
// Copyright © 2021 The Radicle Link Contributors
#![warn(clippy::unwrap_used)]
#![deny(clippy::unwrap_used)]
//! # Collaborative Objects
//!
//! Collaborative objects are graphs of CRDTs.

View File

@ -1,5 +1,5 @@
#![allow(clippy::too_many_arguments)]
#![warn(clippy::unwrap_used)]
#![deny(clippy::unwrap_used)]
pub mod command;
pub use command::{Command, QueryState};

View File

@ -1,4 +1,4 @@
#![warn(clippy::unwrap_used)]
#![deny(clippy::unwrap_used)]
pub mod cache;
pub mod common;
pub mod external;

View File

@ -1,4 +1,4 @@
#![warn(clippy::unwrap_used)]
#![deny(clippy::unwrap_used)]
pub mod crefs;
pub mod did;
pub mod doc;

View File

@ -1,5 +1,5 @@
#![allow(clippy::too_many_arguments)]
#![warn(clippy::unwrap_used)]
#![deny(clippy::unwrap_used)]
pub extern crate radicle_crypto as crypto;

View File

@ -1,4 +1,4 @@
#![warn(clippy::unwrap_used)]
#![deny(clippy::unwrap_used)]
pub mod cob;
pub mod transport;