Silence some noisy compiler warnings temporarily

This commit is contained in:
Timothy Warren 2019-04-10 20:05:18 -04:00
parent c1bb5d642b
commit 7065357737
1 changed files with 4 additions and 0 deletions

View File

@ -2,7 +2,11 @@
//!
//! A query builder using mostly strings, with methods following common SQL syntax
#![warn(missing_docs)]
// Temporarily silence unused variables and uncalled code warnings
// @TODO remove when most of the code is implemented
#![allow(dead_code)]
#![allow(unused_variables)]
pub mod drivers;
pub mod query_builder;