diff --git a/.travis.yml b/.travis.yml index e0fc164..ffff377 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: rust rust: - - 1.33.0 + - 1.35.0 cache: cargo: true timeout: 1200 diff --git a/src/mock/ms8.rs b/src/mock/ms8.rs index d61d43d..12d2865 100644 --- a/src/mock/ms8.rs +++ b/src/mock/ms8.rs @@ -434,7 +434,7 @@ mod tests { // otherwise unusual expressions, so the lint is disabled. #![allow(clippy::eq_op)] // Some test functions contain long lists of assertions. Clippy thinks they are too complex. - #![allow(clippy::cyclomatic_complexity)] + #![allow(clippy::cognitive_complexity)] use super::{ext_euclid, modular_pow, Mersenne8}; use pairing::Field;