mirror of
				https://github.com/nitnelave/lldap.git
				synced 2023-04-12 14:25:13 +00:00 
			
		
		
		
	Add allow warnings for nonstandard macro braces
The warnings come from the macros of libraries that we use, so we can't change them.
This commit is contained in:
		
							parent
							
								
									65f0dfed84
								
							
						
					
					
						commit
						d56dccf9c8
					
				@ -1,4 +1,5 @@
 | 
			
		||||
#![recursion_limit = "256"]
 | 
			
		||||
#![allow(clippy::nonstandard_macro_braces)]
 | 
			
		||||
mod api;
 | 
			
		||||
mod app;
 | 
			
		||||
mod cookies;
 | 
			
		||||
 | 
			
		||||
@ -1,3 +1,4 @@
 | 
			
		||||
#![allow(clippy::nonstandard_macro_braces)]
 | 
			
		||||
use chrono::prelude::*;
 | 
			
		||||
use serde::{Deserialize, Serialize};
 | 
			
		||||
use std::collections::HashSet;
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,6 @@
 | 
			
		||||
#![forbid(unsafe_code)]
 | 
			
		||||
#![allow(clippy::nonstandard_macro_braces)]
 | 
			
		||||
 | 
			
		||||
use crate::{
 | 
			
		||||
    domain::{
 | 
			
		||||
        handler::BackendHandler, sql_backend_handler::SqlBackendHandler, sql_tables::PoolOptions,
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user