Update clippy

This commit is contained in:
Sean Bowe 2018-05-17 10:44:28 -06:00
parent 2a28b61468
commit 97bdd1655f
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
2 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,7 @@ repository = "https://github.com/ebfull/pairing"
[dependencies]
rand = "0.4"
byteorder = "1"
clippy = { version = "0.0.190", optional = true }
clippy = { version = "0.0.200", optional = true }
[features]
unstable-features = ["expose-arith"]

View File

@ -9,6 +9,7 @@
#![cfg_attr(feature = "clippy", allow(unreadable_literal))]
#![cfg_attr(feature = "clippy", allow(many_single_char_names))]
#![cfg_attr(feature = "clippy", allow(new_without_default_derive))]
#![cfg_attr(feature = "clippy", allow(write_literal))]
// Force public structures to implement Debug
#![deny(missing_debug_implementations)]