Skip to content

Commit a8c8b6d

Browse files
authored
clippy fixes (#889)
1 parent d7cd2a2 commit a8c8b6d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

frost-core/src/benches.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ pub fn bench_sign<C: Ciphersuite, R: RngCore + CryptoRng + Clone>(
8989
let mut group = c.benchmark_group(format!("FROST Signing {name}"));
9090
for &n in [3u16, 10, 100, 1000].iter() {
9191
let max_signers = n;
92+
// div_ceil is in 1.73.0 which is larger than the current MSRV
93+
#[allow(clippy::manual_div_ceil)]
9294
let min_signers = (n * 2 + 2) / 3;
9395

9496
group.bench_with_input(

0 commit comments

Comments
 (0)