chore: address Rust 1.83.0 clippy lints and enable more clippy lints (#6705)

This commit is contained in:
Sanchith Hegde
2024-12-02 20:00:44 +05:30
committed by GitHub
parent 797a0db773
commit 9a59d0a5ff
139 changed files with 147 additions and 417 deletions

View File

@ -3,8 +3,6 @@
//! The folder provides generic functions for providing serialization
//! and deserialization while calling redis.
//! It also includes instruments to provide tracing.
//!
//!
use std::fmt::Debug;

View File

@ -1,6 +1,4 @@
//!
//! Errors specific to this custom redis interface
//!
#[derive(Debug, thiserror::Error, PartialEq)]
pub enum RedisError {

View File

@ -1,7 +1,5 @@
//!
//! Data types and type conversions
//! from `fred`'s internal data-types to custom data-types
//!
use common_utils::errors::CustomResult;
use fred::types::RedisValue as FredRedisValue;