Silence some noisy compiler warnings temporarily
This commit is contained in:
parent
c1bb5d642b
commit
7065357737
@ -2,7 +2,11 @@
|
|||||||
//!
|
//!
|
||||||
//! A query builder using mostly strings, with methods following common SQL syntax
|
//! A query builder using mostly strings, with methods following common SQL syntax
|
||||||
#![warn(missing_docs)]
|
#![warn(missing_docs)]
|
||||||
|
|
||||||
|
// Temporarily silence unused variables and uncalled code warnings
|
||||||
|
// @TODO remove when most of the code is implemented
|
||||||
#![allow(dead_code)]
|
#![allow(dead_code)]
|
||||||
|
#![allow(unused_variables)]
|
||||||
|
|
||||||
pub mod drivers;
|
pub mod drivers;
|
||||||
pub mod query_builder;
|
pub mod query_builder;
|
||||||
|
Loading…
Reference in New Issue
Block a user