summaryrefslogtreecommitdiffstats
path: root/imag-bookmark
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-10-08 00:57:22 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-10-08 00:57:22 +0200
commit49b054aeda4f4ede53fcf30a6ab503d26584f76b (patch)
tree7188d5d40999a06628e49859d4b419e3906803df /imag-bookmark
parent8f26d5b9c32739480563986fe6db9eed2daef393 (diff)
Deny warnings
Diffstat (limited to 'imag-bookmark')
-rw-r--r--imag-bookmark/src/main.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/imag-bookmark/src/main.rs b/imag-bookmark/src/main.rs
index 814d1a40..88f41f7b 100644
--- a/imag-bookmark/src/main.rs
+++ b/imag-bookmark/src/main.rs
@@ -17,6 +17,21 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
+#![deny(
+ non_camel_case_types,
+ non_snake_case,
+ path_statements,
+ trivial_numeric_casts,
+ unstable_features,
+ unused_allocation,
+ unused_import_braces,
+ unused_imports,
+ unused_must_use,
+ unused_mut,
+ unused_qualifications,
+ while_true,
+)]
+
extern crate clap;
#[macro_use] extern crate log;
#[macro_use] extern crate version;