hipstr
Yet another string for Rust π¦
from_static
(a const
ructor!)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
: serialization/deserialization support with serde
crateunstable
: exposes internal Backend
trait that may change at any momenthipstr
This crate uses unsafe
extensively. π€·
It exploits a 1-bit alignment niche in pointer existing on most platform (I think all Rustc supported platform) to distinguish the inline representation from the other representations.
To make things safer, Rust is tested thoroughly on multiple platforms, normally and with Miri (MIR interpreter).
This crate has near full line coverage:
```bash cargo llvm-cov --all-features --html
cargo tarpaulin --all-features --out html --engine llvm ```
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 ```
arcstr
: no inline repr, heavy slice (with dedicated Substr
type) and custom Arc
.flexstr
: no slice, very similar but use an Arc<str>
instead of an Arc<String>
(remove level of indirection but use fat pointers).imstr
: no inline repr, otherwise very similar.In short, HipStr
, one string type to rule them allβ¦
imstr
)?For now, just me PoLazarus π» \ Help welcome! π¨
MIT + APACHE