summaryrefslogtreecommitdiffstats
path: root/libimagentryselect
diff options
context:
space:
mode:
authorGavin Thomas Claugus <gclaugus@gmail.com>2016-07-26 16:25:39 -0400
committerGavin Thomas Claugus <gclaugus@gmail.com>2016-07-26 16:25:39 -0400
commitcdaed701251a372d4d2de909fa841a0316ab5610 (patch)
treede40b030e03698746fd17e62aeaef007d8763681 /libimagentryselect
parentb2e50efd50c5e1644e908b0ab3db0cbbcd1fb625 (diff)
libimagentryselect: Deny warnings
Signed-off-by: Gavin Thomas Claugus <gclaugus@gmail.com>
Diffstat (limited to 'libimagentryselect')
-rw-r--r--libimagentryselect/src/lib.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/libimagentryselect/src/lib.rs b/libimagentryselect/src/lib.rs
index 182aecdb..11cb6f1a 100644
--- a/libimagentryselect/src/lib.rs
+++ b/libimagentryselect/src/lib.rs
@@ -1,3 +1,17 @@
+#![deny(
+ non_camel_case_types,
+ non_snake_case,
+ path_statements,
+ trivial_numeric_casts,
+ unstable_features,
+ unused_allocation,
+ unused_import_braces,
+ unused_imports,
+ unused_mut,
+ unused_qualifications,
+ while_true,
+)]
+
extern crate clap;
extern crate log;
extern crate interactor;