hipstr
Yet another string for Rust ๐ฆ
borrowed
(a const
constructor) or from_static
And bytes too!
```rust use hipstr::HipStr;
let simplegreetings = HipStr::fromstatic("Hello world"); let clone = simplegreetings.clone(); // no copy
let user = "John"; let greetings = HipStr::from(format!("Hello {}", user)); let _user = greetings.slice(6..): // no copy ```
serde
: provides serialization/deserialization support with serde
crateunstable
: exposes internal Backend
trait that may change at any momenthipstr
This crate uses unsafe
extensively. ๐คท
It exploits the 1-bit alignment niche in pointers existing on most platforms (I think all Rustc supported platforms) to distinguish the inline representation from the other representations.
To make things safer, Rust is tested thoroughly on multiple platforms, normally and with [Miri] (the MIR interpreter).
This crate has near full line coverage:
```bash cargo llvm-cov --all-features --html
cargo tarpaulin --all-features --out html --engine llvm ```
Check out the current coverage on [Codecov]:
You can easily run the test on various platforms with [cross
]:
bash
cross test --target mips-unknown-linux-gnu # 32-bit BE
cross test --target mips64-unknown-linux-gnuabi64 # 64-bit BE
cross test --target i686-unknown-linux-gnu # 32-bit LE
cross test --target x86_64-unknown-linux-gnu # 64-bit LE
This crate runs successfully with Miri:
```bash MIRIFLAGS=-Zmiri-symbolic-alignment-check cargo +nightly miri test
for SEED in $(seq 0 10); do echo "Trying seed: $SEED" MIRIFLAGS="-Zmiri-seed=$SEED" cargo +nightly miri test || { echo "Failing seed: $SEED"; break; }; done ```
To check with different word size and endianness:
```bash
cargo +nightly miri test --target mips64-unknown-linux-gnuabi64
cargo +nightly miri test --target i686-unknown-linux-gnu ```
#[non_exhaustive]
| Name | Thread-safe cheap-clone | Local cheap-clone | Inline | Cheap slice | Bytes | Cow<'a> | Comment |
| ---- | ----------- | ----- | ------ | ------ | ----- | ---- | :------ |
| hipstr
| ๐ข | ๐ข | ๐ข | ๐ข | ๐ข | ๐ข | obviously!
| arcstr
| ๐ข* | โ | โ | โ* | โ | โ | *use a custom thin Arc
, heavy slice (with dedicated substring type) |
| flexstr
| ๐ข | ๐ข | ๐ข | โ | โ | โ | use an Arc<str>
instead of an Arc<String>
(remove one level of indirection but use fat pointers) |
| imstr
| ๐ข | ๐ข | โ | ๐ข | โ | โ | |
| faststr
| ๐ข | โ | ๐ข | ๐ข | โ | โ | zero-doc with complex API |
| fast-str
| ๐ข | โ | ๐ข | ๐ข | โ | โ | inline repr is opt-in |
| ecow
| ๐ข | โ | ๐ข | โ | ๐ข | โ | on two words only ๐คค, even any T
| cowstr
| ๐ข | โ | โ | โ | โ | โ | heavy slice, *contrary to its name |
| compact_str
| โ | โ | ๐ข | โ | ๐ข* | โ | opt-in via smallvec
|
| inline_string
| โ | โ | ๐ข | โ | โ | โ | |
| smartstring
| โ | โ | ๐ข | โ | โ | โ | |
| smallstr
| โ | โ | ๐ข | โ | โ | โ | |
| smol_str
| โ | โ | ๐ข | โ | โ | โ | *but only inline string, here for reference |
skipping specialized string types like tinystr
(ASCII-only, bounded), or bstr, or bytestring, or...
In short, HipStr
, one string type to rule them all ๐
While speed is not the main motivator for hipstr
, it seems to be doing OK on that front.
On my i7-8550U, under Arch Linux over Windows 11/WSL 2 (yeah I know ๐
), the creation of a HipStr
from a slice is competitive with other crates and the std
:
For now, just me PoLazarus ๐ป \ Help welcome! ๐จ
MIT + Apache