#string #optimization #display #inline #no-heap

smart-string

A collection of string types and traits designed for enhanced string manipulation

3 releases

0.1.3 Sep 21, 2023
0.1.2 Sep 20, 2023
0.1.1 Sep 19, 2023

#840 in Data structures

Download history 3/week @ 2024-01-15 9/week @ 2024-02-12 7/week @ 2024-02-19 39/week @ 2024-02-26 10/week @ 2024-03-04 98/week @ 2024-03-11 8/week @ 2024-03-18 7/week @ 2024-03-25 36/week @ 2024-04-01 9/week @ 2024-04-08 24/week @ 2024-04-15 24/week @ 2024-04-22

94 downloads per month

MIT/Apache

45KB
1K SLoC

crates.io

Minimal rust version 1.56 (sorry, not checked yet)

Smart String Library

This library is a collection of string types and traits designed for enhanced string manipulation. It's born out of a need to centralize and avoid code repetition, particularly unsafe operations, from the author's previous projects. While the tools and methods here reflect certain patterns frequently observed in those projects, it's worth noting that the library itself is in its early stages of development.

Status

Currently, Smart String is in active development, and its API might undergo changes. Although it encapsulates tried-and-true patterns from earlier works, the library as a standalone entity is relatively new. Hence, it's advised to use it with caution and feel free to provide feedback, report issues, or suggest improvements.

Not yet covered by tests.

Features

  • serde - Enables serde support.

What's in the box

  • PascalString<N>: A string with a fixed capacity, either stored on the stack or in-place within larger structures and arrays.
  • DisplayExt: A suite of methods to streamline string formatting.
  • SmartString: A string that dynamically decides its storage location (stack or heap) based on its length.

Roadmap

Primary Goals

  • StringsStack: A dedicated storage solution for multiple strings, allowing them to be housed within a single allocation.
  • StringsSet: A storage medium designed for strings, facilitating both consolidated allocation and utilization as a hash set.

Additional Goals

  • PascalStringLong<N>: An enhanced variant of PascalString<N> offering support for capacities up to 2^32-1 bytes, catering to scenarios where a 255-byte limit falls short.
  • Compatibility with no_std environments.
  • Integration support for ufmt.

Open to more suggestions!

License

Licensed under either of

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

~110–350KB