diff options
author | Daniel Mueller <deso@posteo.net> | 2019-01-26 21:55:39 -0800 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2019-01-26 21:55:39 -0800 |
commit | 65ae7854a479e6d57b0f6c8603065d768032ffae (patch) | |
tree | bea961bc7f79ce816a15bf9567a587e6a5257c85 | |
parent | 3f4b606513386ad8c8d52ef9e3874a7b19bd56cd (diff) | |
download | nitrocli-65ae7854a479e6d57b0f6c8603065d768032ffae.tar.gz nitrocli-65ae7854a479e6d57b0f6c8603065d768032ffae.tar.bz2 |
Remove no longer used duplicate_associated_type_bindings lint
The duplicate_associated_type_bindings lint seems to have been removed
with the Rust 1.32 release.
This change removes the lint from the program to prevent the newly
introduced warning from being emitted.
-rw-r--r-- | nitrocli/src/main.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/nitrocli/src/main.rs b/nitrocli/src/main.rs index 58d0628..1629167 100644 --- a/nitrocli/src/main.rs +++ b/nitrocli/src/main.rs @@ -19,7 +19,6 @@ #![deny( dead_code, - duplicate_associated_type_bindings, illegal_floating_point_literal_pattern, improper_ctypes, intra_doc_link_resolution_failure, |