thin-string 0.1.2

A String with a smaller stack footprint
Documentation

thin-string

ThinString is a mirror of String except it stores length and capacity in the allocation on the heap.
It uses thin_vec internally instead of a vec. ThinString makes a best effort to support the whole std api where possible.