-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: remove heapless dependency #160
refactor: remove heapless dependency #160
Conversation
@GabrielDertoni please run cargo fmt. |
c690149
to
3399684
Compare
3399684
to
af417e2
Compare
Co-authored-by: danieleades <[email protected]>
@GabrielDertoni check ci |
You can replace serde_arrays dependency on serde-big-array to fix P.S. Maybe the problem is causes by |
Yes, it appears to be this |
It appears fine by be, is there any further comments around this PR ? |
It would be nice to add a link to the issue into the
|
ping @patrickelectric |
This PR aims to remove the
heapless
dependency. Currently the implementation relies onheapless::Vec
but doesn't have to. Removing this dependency reduces the ammount of code generated and the compile time. It also uses aconst DEFAULT
for default values of*_DATA
types which can be used inconst fn
s.Look at #156 for more context.