We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7cd2a2 commit a8c8b6dCopy full SHA for a8c8b6d
frost-core/src/benches.rs
@@ -89,6 +89,8 @@ pub fn bench_sign<C: Ciphersuite, R: RngCore + CryptoRng + Clone>(
89
let mut group = c.benchmark_group(format!("FROST Signing {name}"));
90
for &n in [3u16, 10, 100, 1000].iter() {
91
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)]
94
let min_signers = (n * 2 + 2) / 3;
95
96
group.bench_with_input(
0 commit comments