6 releases (3 stable)

1.1.1 Jun 30, 2023
1.1.0 Jan 13, 2021
1.0.0 Apr 25, 2020
0.99.0 Apr 11, 2020
0.99.0-dev.3 Mar 26, 2020

#7 in Text editors

Download history 59523/week @ 2024-12-16 39231/week @ 2024-12-23 39827/week @ 2024-12-30 60068/week @ 2025-01-06 60138/week @ 2025-01-13 55773/week @ 2025-01-20 55992/week @ 2025-01-27 67834/week @ 2025-02-03 72560/week @ 2025-02-10 65796/week @ 2025-02-17 67070/week @ 2025-02-24 72800/week @ 2025-03-03 82699/week @ 2025-03-10 75329/week @ 2025-03-17 77252/week @ 2025-03-24 85265/week @ 2025-03-31

326,003 downloads per month
Used in 844 crates (32 directly)

MIT/Apache

24KB
430 lines

Newtypes for working with text sizes/ranges in a more type-safe manner.

This library can help with two things:

  • Reducing storage requirements for offsets and ranges, under the assumption that 32 bits is enough.
  • Providing standard vocabulary types for applications where text ranges are pervasive.

However, you should not use this library simply because you work with strings. In the overwhelming majority of cases, using usize and std::ops::Range<usize> is better. In particular, if you are publishing a library, using only std types in the interface would make it more interoperable. Similarly, if you are writing something like a lexer, which produces, but does not store text ranges, then sticking to usize would be better.

Minimal Supported Rust Version: latest stable.


text-size

Build Status Crates.io API reference

A library that provides newtype wrappers for u32 and (u32, u32) for use as text offsets.

See the docs for more.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~155KB