Update to Rust 1.35.0. (#83)

This commit is contained in:
Andreas Fackler 2019-06-06 12:05:48 +02:00 committed by Vladimir Komendantskiy
parent 4ef9496776
commit e0785f465c
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
language: rust
rust:
- 1.33.0
- 1.35.0
cache:
cargo: true
timeout: 1200

View File

@ -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;