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:
parent
4d57ba496d
commit
91b2fd8986
|
|
@ -1,6 +1,6 @@
|
||||||
// Copyright © 2021 The Radicle Link Contributors
|
// Copyright © 2021 The Radicle Link Contributors
|
||||||
|
|
||||||
#![warn(clippy::unwrap_used)]
|
#![deny(clippy::unwrap_used)]
|
||||||
//! # Collaborative Objects
|
//! # Collaborative Objects
|
||||||
//!
|
//!
|
||||||
//! Collaborative objects are graphs of CRDTs.
|
//! Collaborative objects are graphs of CRDTs.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
#![allow(clippy::too_many_arguments)]
|
#![allow(clippy::too_many_arguments)]
|
||||||
#![warn(clippy::unwrap_used)]
|
#![deny(clippy::unwrap_used)]
|
||||||
pub mod command;
|
pub mod command;
|
||||||
pub use command::{Command, QueryState};
|
pub use command::{Command, QueryState};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#![warn(clippy::unwrap_used)]
|
#![deny(clippy::unwrap_used)]
|
||||||
pub mod cache;
|
pub mod cache;
|
||||||
pub mod common;
|
pub mod common;
|
||||||
pub mod external;
|
pub mod external;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#![warn(clippy::unwrap_used)]
|
#![deny(clippy::unwrap_used)]
|
||||||
pub mod crefs;
|
pub mod crefs;
|
||||||
pub mod did;
|
pub mod did;
|
||||||
pub mod doc;
|
pub mod doc;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
#![allow(clippy::too_many_arguments)]
|
#![allow(clippy::too_many_arguments)]
|
||||||
#![warn(clippy::unwrap_used)]
|
#![deny(clippy::unwrap_used)]
|
||||||
|
|
||||||
pub extern crate radicle_crypto as crypto;
|
pub extern crate radicle_crypto as crypto;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#![warn(clippy::unwrap_used)]
|
#![deny(clippy::unwrap_used)]
|
||||||
pub mod cob;
|
pub mod cob;
|
||||||
pub mod transport;
|
pub mod transport;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue