Sha256: 9cd781e3d0e8d772860cd332b4f403910f3ca52fd69a459f5ac95d28f0e25ac2

Contents?: true

Size: 806 Bytes

Versions: 3

Compression:

Stored size: 806 Bytes

Contents

// 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);

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wasmtime-29.0.0 ./ext/cargo-vendor/icu_normalizer-1.5.0/benches/bench.rs
wasmtime-28.0.0 ./ext/cargo-vendor/icu_normalizer-1.5.0/benches/bench.rs
wasmtime-27.0.0 ./ext/cargo-vendor/icu_normalizer-1.5.0/benches/bench.rs