chore: allow unwrap/expect within kkt benchmarking code

This commit is contained in:
Jędrzej Stuczyński
2026-01-13 17:00:47 +00:00
parent 9b567a8483
commit 637c29adc7
+4
View File
@@ -1,6 +1,10 @@
// Copyright 2025 - Nym Technologies SA <contact@nymtech.net>
// SPDX-License-Identifier: Apache-2.0
// fine in benchmarking code
#![allow(clippy::expect_used)]
#![allow(clippy::unwrap_used)]
use criterion::{Criterion, criterion_group, criterion_main};
use nym_crypto::asymmetric::ed25519;