Skip to content

Commit

Permalink
Clippy warning fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
abdolence committed Dec 2, 2024
1 parent 4901d1e commit 0f0d6ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/db/listen_changes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ pub struct FirestoreCollectionDocuments {
pub documents: Vec<String>,
}

#[allow(clippy::large_enum_variant)]
#[derive(Debug, Clone)]
pub enum FirestoreTargetType {
Query(FirestoreQueryParams),
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@
//!
#![allow(clippy::new_without_default)]
#![allow(clippy::needless_lifetimes)]
#![forbid(unsafe_code)]

pub mod errors;
Expand Down

0 comments on commit 0f0d6ed

Please sign in to comment.