chore: checkpoint before Python removal

This commit is contained in:
2026-03-26 22:33:59 +00:00
parent 683cec9307
commit e568ddf82a
29972 changed files with 11269302 additions and 2 deletions

26
vendor/icu_normalizer/benches/bench.rs vendored Normal file
View File

@@ -0,0 +1,26 @@
// 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;
mod utf16_throughput;
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,
utf16_throughput::criterion_benchmark,
);
criterion_main!(benches);