You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The way i understand it, this crate uses alloc for fancy error reporting (and operation on Strings, Vecs and Cows).
It would be nice to be able to use this crate (albeit with worse error reporting) in a no_std and no_alloc environment, of course without String/Vec/NullString types (or perhaps using heapless to provide stack-based alternatives).
I'll try doing this in a branch and see how much is given up by doing this.
The text was updated successfully, but these errors were encountered:
The way i understand it, this crate uses
alloc
for fancy error reporting (and operation onString
s,Vec
s andCow
s).It would be nice to be able to use this crate (albeit with worse error reporting) in a
no_std
andno_alloc
environment, of course withoutString
/Vec
/NullString
types (or perhaps usingheapless
to provide stack-based alternatives).I'll try doing this in a branch and see how much is given up by doing this.
The text was updated successfully, but these errors were encountered: