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
Currently, a lot of traits do require alloc. However and at a closer inspection, often this requirement is just for convenience features, like Cow (mqtt client traits), or incidental usage of String (wifi trait configuration) which can be avoided either by using heapless (as the strings have an upper limit) or better yet - lifetimed &str.
Given that it might be very possible to provide completely alloc-free implementations of these traits (or at least of their asyncified versions), we should remove the alloc requirements from these traits.
bjoernQ, MabezDev, BjoernLange, svenstaro and projectgus