From 70653577378cb5c91bd8bbb72d0eae581dd1b19f Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Wed, 10 Apr 2019 20:05:18 -0400 Subject: [PATCH] Silence some noisy compiler warnings temporarily --- src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 17408aa..22ccccf 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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;