-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(kyberlib): 🚑 disabling criterion benchmark for now
- Loading branch information
1 parent
6556e12
commit bd60663
Showing
3 changed files
with
37 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright © 2023 KyberLib. All rights reserved. | ||
// SPDX-License-Identifier: Apache-2.0 OR MIT | ||
|
||
//! This crate is responsible for benchmarking various components of the application. | ||
// extern crate criterion; | ||
// use criterion::{criterion_group, criterion_main}; | ||
|
||
// /// This is a module for benchmarking API operations. | ||
// mod api; | ||
|
||
// Entry point for all benchmarks. | ||
// criterion_group!( | ||
// name = benches; | ||
// config = Criterion::default() | ||
// targets = api::keypair, api::encap, api::decap, api::decap_fail, api::decode_hex | ||
// ); | ||
|
||
// // Run benchmarks | ||
// criterion_main!(benches); |