fitzgen / inlinable_string

An owned, grow-able UTF-8 string that stores small strings inline and avoids heap-allocation.
http://fitzgen.github.io/inlinable_string/inlinable_string/index.html
Other
69 stars 11 forks source link

Fails to build with no_std since all versions of `bare-io` were yanked #34

Closed 5225225 closed 2 years ago

5225225 commented 2 years ago

One solution could be to just remove the no_std feature. It doesn't seem to be actually exposed anywhere other than writing to a &mut &mut [u8], and that can be trivially replaced.

I'll fix this.