Skip to content

Commit

Permalink
Added Deny Missing Debug Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Proziam committed Sep 23, 2024
1 parent d45fbb3 commit dcda054
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ use crate::{
};

/// Supabase Auth Client
#[derive(Debug)]
pub struct AuthClient {
pub client: Client,
/// REST endpoint for querying and managing your database
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![forbid(unsafe_code)]
#![deny(missing_debug_implementations)]

pub mod client;
pub mod error;
Expand Down

0 comments on commit dcda054

Please sign in to comment.