blob: 011478afe61fb02069543191f37cd4c91161d186 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// This file is part of ICU4X. For terms of use, please see the file
// called LICENSE at the top level of the ICU4X source tree
// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
use criterion::{criterion_group, criterion_main};
mod canonical_composition;
mod canonical_decomposition;
mod composing_normalizer_nfc;
mod composing_normalizer_nfkc;
mod decomposing_normalizer_nfd;
mod decomposing_normalizer_nfkd;
criterion_group!(
benches,
canonical_composition::criterion_benchmark,
canonical_decomposition::criterion_benchmark,
composing_normalizer_nfc::criterion_benchmark,
composing_normalizer_nfkc::criterion_benchmark,
decomposing_normalizer_nfd::criterion_benchmark,
decomposing_normalizer_nfkd::criterion_benchmark,
);
criterion_main!(benches);
|