Merge pull request #362 from matthiasbeyer/libimagentryfilter/zero-warnings

Libimagentryfilter/zero warnings
This commit is contained in:
Matthias Beyer 2016-04-18 08:54:19 +02:00
commit f0d29dad0f
4 changed files with 15 additions and 3 deletions

View file

@ -3,7 +3,6 @@ use toml::Value;
use libimagstore::store::Entry;
use builtin::header::field_path::FieldPath;
use filter::Filter;
pub struct VersionEq {

View file

@ -3,7 +3,6 @@ use toml::Value;
use libimagstore::store::Entry;
use builtin::header::field_path::FieldPath;
use filter::Filter;
pub struct VersionGt {

View file

@ -3,7 +3,6 @@ use toml::Value;
use libimagstore::store::Entry;
use builtin::header::field_path::FieldPath;
use filter::Filter;
pub struct VersionLt {

View file

@ -1,3 +1,18 @@
#![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,
)]
#[macro_use] extern crate log;
extern crate itertools;