#string #no-std #text

no-std str_indices

Count and convert between indexing schemes on string slices

9 releases

0.4.3 Nov 7, 2023
0.4.2 Oct 18, 2023
0.4.1 Dec 18, 2022
0.4.0 May 26, 2022
0.1.0 Mar 11, 2022

#62 in Text processing

Download history 8475/week @ 2023-12-17 6289/week @ 2023-12-24 7487/week @ 2023-12-31 9773/week @ 2024-01-07 10638/week @ 2024-01-14 11249/week @ 2024-01-21 10608/week @ 2024-01-28 11002/week @ 2024-02-04 10491/week @ 2024-02-11 12590/week @ 2024-02-18 11889/week @ 2024-02-25 13130/week @ 2024-03-03 11009/week @ 2024-03-10 11095/week @ 2024-03-17 11524/week @ 2024-03-24 12342/week @ 2024-03-31

47,127 downloads per month
Used in 134 crates (6 directly)

MIT/Apache

74KB
1.5K SLoC

Str Indices

Latest Release Documentation

Count and convert between different indexing schemes on utf8 string slices.

The following schemes are currently supported:

  • Chars (Unicode scalar values).
  • UTF16 code units.
  • Lines, with three options for recognized line break characters:
    • Line feed only.
    • Line feed and carriage return.
    • All Unicode line break characters, as specified in Unicode Annex #14.

Feature Flags

The simd feature flag (enabled by default) enables explicit SIMD optimizations on supported platforms. Disabling it will use the fallback scalar code path on all platforms. This feature flag only affects performance, not behavior.

Unsafe Code

Str Indices uses unsafe code for performance optimizations, primarily for SIMD intrinsics. The unsafe code is kept minimal, mostly compartmentalized, and easy to audit. The entire code base is also fuzz tested.

If you would like to run the fuzz testing suite yourself, install Rust nightly and cargo fuzz and run the following command from the repository root:

cargo +nightly fuzz run random_strings

Additional runs of the fuzz testing suite are very much appreciated, as is general auditing of the code base. If you find any unsoundness, please file an issue!

License

This project is licensed under either of

at your option.

Contributing

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Str Indices by you will be licensed as above, without any additional terms or conditions.

This crate is no-std, doesn't allocate, and has zero dependencies, and aims to remain that way. Please adhere to this in any submitted contributions.

No runtime deps