File tree Expand file tree Collapse file tree 4 files changed +6
-27
lines changed Expand file tree Collapse file tree 4 files changed +6
-27
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ jobs:
22
22
clippy :
23
23
runs-on : ubuntu-latest
24
24
steps :
25
- - uses : actions/checkout@v5
26
- - uses : dtolnay/rust-toolchain@master
27
- with :
28
- toolchain : 1.88.0
29
- components : clippy
30
- - run : cargo clippy --all --all-features -- -D warnings
25
+ - uses : actions/checkout@v5
26
+ - uses : dtolnay/rust-toolchain@master
27
+ with :
28
+ toolchain : 1.89 # pinned to prevent breakages when new stable versions are released
29
+ components : clippy
30
+ - run : cargo clippy --all --all-features -- -D warnings
31
31
32
32
rustfmt :
33
33
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 10
10
//! Apache License (Version 2.0), and the BSD 1-Clause License;
11
11
//! users may pick which license to apply.
12
12
13
- #![ allow( clippy:: unusual_byte_groupings) ]
14
-
15
13
#[ cfg_attr( target_pointer_width = "32" , path = "scalar/p192_scalar_32.rs" ) ]
16
14
#[ cfg_attr( target_pointer_width = "64" , path = "scalar/p192_scalar_64.rs" ) ]
17
- #[ allow(
18
- clippy:: identity_op,
19
- clippy:: too_many_arguments,
20
- clippy:: unnecessary_cast
21
- ) ]
22
15
mod scalar_impl;
23
16
24
17
use self :: scalar_impl:: * ;
Original file line number Diff line number Diff line change 10
10
//! Apache License (Version 2.0), and the BSD 1-Clause License;
11
11
//! users may pick which license to apply.
12
12
13
- #![ allow( clippy:: unusual_byte_groupings) ]
14
-
15
13
#[ cfg_attr( target_pointer_width = "32" , path = "scalar/p224_scalar_32.rs" ) ]
16
14
#[ cfg_attr( target_pointer_width = "64" , path = "scalar/p224_scalar_64.rs" ) ]
17
- #[ allow(
18
- clippy:: identity_op,
19
- clippy:: too_many_arguments,
20
- clippy:: unnecessary_cast
21
- ) ]
22
15
mod scalar_impl;
23
16
24
17
use self :: scalar_impl:: * ;
Original file line number Diff line number Diff line change 10
10
//! Apache License (Version 2.0), and the BSD 1-Clause License;
11
11
//! users may pick which license to apply.
12
12
13
- #![ allow( clippy:: unusual_byte_groupings) ]
14
-
15
13
#[ cfg_attr( target_pointer_width = "32" , path = "scalar/p384_scalar_32.rs" ) ]
16
14
#[ cfg_attr( target_pointer_width = "64" , path = "scalar/p384_scalar_64.rs" ) ]
17
- #[ allow(
18
- clippy:: identity_op,
19
- clippy:: too_many_arguments,
20
- clippy:: unnecessary_cast
21
- ) ]
22
15
mod scalar_impl;
23
16
24
17
use self :: scalar_impl:: * ;
You can’t perform that action at this time.
0 commit comments