Open katyo opened 3 months ago
bitcode
needs alloc
(see the README)
Dropping the alloc
dependency would require some redesigning and refactoring, and would probably add complexity. You're welcome to try writing a PR to do it (I'd be interested to see how far you can get). I anticipate you would need to use a lot of stack-allocated, fixed-sized vectors that abort instead of growing.
I try this awesome library to create firmware for microcontrollers. Because it supports
no_std
I expected it works but seems currentlyEncoder
andDecoder
implementations usesVec
type fromstd
/alloc
. I got the following errors:I added dependency as follows:
Is it possible to use this crate without
std
andalloc
at all?