mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-04 05:59:48 +08:00
chore: address Rust 1.83.0 clippy lints and enable more clippy lints (#6705)
This commit is contained in:
@ -2,10 +2,8 @@
|
||||
#![cfg_attr(docsrs, doc(cfg_hide(doc)))]
|
||||
#![warn(missing_docs)]
|
||||
|
||||
//!
|
||||
//! Personal Identifiable Information protection. Wrapper types and traits for secret management which help ensure they aren't accidentally copied, logged, or otherwise exposed (as much as possible), and also ensure secrets are securely wiped from memory when dropped.
|
||||
//! Secret-keeping library inspired by secrecy.
|
||||
//!
|
||||
|
||||
#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR" ), "/", "README.md"))]
|
||||
|
||||
@ -49,7 +47,6 @@ pub use crate::serde::{
|
||||
/// This module should be included with asterisk.
|
||||
///
|
||||
/// `use masking::prelude::*;`
|
||||
///
|
||||
pub mod prelude {
|
||||
pub use super::{ExposeInterface, ExposeOptionInterface, PeekInterface};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user