Merge pull request #362 from matthiasbeyer/libimagentryfilter/zero-warnings
Libimagentryfilter/zero warnings
This commit is contained in:
commit
f0d29dad0f
4 changed files with 15 additions and 3 deletions
|
@ -3,7 +3,6 @@ use toml::Value;
|
|||
|
||||
use libimagstore::store::Entry;
|
||||
|
||||
use builtin::header::field_path::FieldPath;
|
||||
use filter::Filter;
|
||||
|
||||
pub struct VersionEq {
|
||||
|
|
|
@ -3,7 +3,6 @@ use toml::Value;
|
|||
|
||||
use libimagstore::store::Entry;
|
||||
|
||||
use builtin::header::field_path::FieldPath;
|
||||
use filter::Filter;
|
||||
|
||||
pub struct VersionGt {
|
||||
|
|
|
@ -3,7 +3,6 @@ use toml::Value;
|
|||
|
||||
use libimagstore::store::Entry;
|
||||
|
||||
use builtin::header::field_path::FieldPath;
|
||||
use filter::Filter;
|
||||
|
||||
pub struct VersionLt {
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue