html5gum icon indicating copy to clipboard operation
html5gum copied to clipboard

no_std

Open untitaker opened this issue 2 years ago • 1 comments

Investigate what could be done to make this no_std. After #4 we got rid of most allocations altogether, and therefore the String type.

untitaker avatar Nov 24 '21 20:11 untitaker

no_std can still use types like String through alloc. It's not the most compatible, as it requires a global allocator, but it is much better than not supporting no_std at all.

Cf. https://doc.rust-lang.org/alloc/

There may be some non-alloc compatible types in here, though, I haven't investigated yet.

TheTechRobo avatar Dec 02 '22 16:12 TheTechRobo